export const APPLY = 'apply'; | |
export const CONSTRUCT = 'construct'; | |
export const DEFINE_PROPERTY = 'defineProperty'; | |
export const DELETE_PROPERTY = 'deleteProperty'; | |
export const GET = 'get'; | |
export const GET_OWN_PROPERTY_DESCRIPTOR = 'getOwnPropertyDescriptor'; | |
export const GET_PROTOTYPE_OF = 'getPrototypeOf'; | |
export const HAS = 'has'; | |
export const IS_EXTENSIBLE = 'isExtensible'; | |
export const OWN_KEYS = 'ownKeys'; | |
export const PREVENT_EXTENSION = 'preventExtensions'; | |
export const SET = 'set'; | |
export const SET_PROTOTYPE_OF = 'setPrototypeOf'; | |