create project
This commit is contained in:
11
kitabcitab/node_modules/core-js-pure/modules/esnext.function.un-this.js
generated
vendored
Normal file
11
kitabcitab/node_modules/core-js-pure/modules/esnext.function.un-this.js
generated
vendored
Normal file
@@ -0,0 +1,11 @@
|
||||
var $ = require('../internals/export');
|
||||
var uncurryThis = require('../internals/function-uncurry-this');
|
||||
var aCallable = require('../internals/a-callable');
|
||||
|
||||
// `Function.prototype.unThis` method
|
||||
// https://github.com/js-choi/proposal-function-un-this
|
||||
$({ target: 'Function', proto: true, forced: true }, {
|
||||
unThis: function unThis() {
|
||||
return uncurryThis(aCallable(this));
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user