File size: 1,227 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
'use strict';
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;
const DELETE = 'delete';
exports.DELETE = DELETE;
|