2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-15 11:59:42 +03:00
Files
axios/lib/helpers/bind.js
T
2022-05-09 19:08:57 +02:00

8 lines
137 B
JavaScript

'use strict';
module.exports = function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
};