mirror of
https://github.com/tenrok/axios.git
synced 2026-05-15 11:59:42 +03:00
4c898f8665
Co-authored-by: Jay <jasonsaayman@gmail.com>
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
'use strict';
|
|
|
|
module.exports = function bind(fn, thisArg) {
|
|
return function wrap() {
|
|
return fn.apply(thisArg, arguments);
|
|
};
|
|
};
|