UNPKG

391 BJavaScriptView Raw
1'use strict';
2// TODO: Remove from `core-js@4`
3var $ = require('../internals/export');
4var bind = require('../internals/function-bind');
5
6// `Function.prototype.bind` method
7// https://tc39.es/ecma262/#sec-function.prototype.bind
8// eslint-disable-next-line es/no-function-prototype-bind -- detection
9$({ target: 'Function', proto: true, forced: Function.bind !== bind }, {
10 bind: bind
11});