All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.function-call.js Maven / Gradle / Ivy

The newest version!
'use strict';
var NATIVE_BIND = require('../internals/function-bind-native');

var call = Function.prototype.call;

module.exports = NATIVE_BIND ? call.bind(call) : function () {
  return call.apply(call, arguments);
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy