first
This commit is contained in:
9
node_modules/core-js/internals/function-bind-native.js
generated
vendored
Normal file
9
node_modules/core-js/internals/function-bind-native.js
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
'use strict';
|
||||
var fails = require('../internals/fails');
|
||||
|
||||
module.exports = !fails(function () {
|
||||
// eslint-disable-next-line es/no-function-prototype-bind -- safe
|
||||
var test = (function () { /* empty */ }).bind();
|
||||
// eslint-disable-next-line no-prototype-builtins -- safe
|
||||
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
||||
});
|
Reference in New Issue
Block a user