loulijun2021
2024-01-09 3e0e40c844c3a10aca5cc0c87b18579122700b61
1
2
3
4
5
6
7
'use strict';
 
export default function bind(fn, thisArg) {
  return function wrap() {
    return fn.apply(thisArg, arguments);
  };
}