Files
cdek-maps/parent_dir/20240530212112Z/node_modules/axios/lib/helpers/bind.js
zznty 529fe260da 2
2024-06-02 21:49:11 +07:00

8 lines
134 B
JavaScript

'use strict';
export default function bind(fn, thisArg) {
return function wrap() {
return fn.apply(thisArg, arguments);
};
}