monolito_djanco_poonto/node_modules/axios/lib/helpers/bind.js
2025-02-25 13:26:08 -03:00

8 lines
134 B
JavaScript

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