This commit is contained in:
sanfan.hx
2019-05-28 10:32:16 +08:00
parent 9132c00272
commit ec46955a9e
13228 changed files with 624107 additions and 56 deletions

View File

@ -0,0 +1,12 @@
'use strict';
var $export = require('./_export');
var toObject = require('./_to-object');
var aFunction = require('./_a-function');
var $defineProperty = require('./_object-dp');
// B.2.2.2 Object.prototype.__defineGetter__(P, getter)
require('./_descriptors') && $export($export.P + require('./_object-forced-pam'), 'Object', {
__defineGetter__: function __defineGetter__(P, getter) {
$defineProperty.f(toObject(this), P, { get: aFunction(getter), enumerable: true, configurable: true });
}
});