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

scripts.node_modules.axios.lib.helpers.bind.js Maven / Gradle / Ivy

There is a newer version: 2.14
Show newest version
'use strict';

module.exports = function bind(fn, thisArg) {
  return function wrap() {
    var args = new Array(arguments.length);
    for (var i = 0; i < args.length; i++) {
      args[i] = arguments[i];
    }
    return fn.apply(thisArg, args);
  };
};




© 2015 - 2025 Weber Informatics LLC | Privacy Policy