aimpress-chatbot/node_modules/axios/lib/helpers/bind.js
“SamoilenkoVadym” 195299ece0 Initial commit
2025-04-27 17:05:18 +01:00

7 lines
134 B
JavaScript

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