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