• File: bind.js
  • Full Path: /var/www/nodejs/simo_meps_file_script/node_modules/axios/lib/helpers/bind.js
  • Date Modified: 02/28/2025 8:55 PM
  • File size: 134 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict';

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