mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-09 07:38:15 +08:00
8 lines
134 B
JavaScript
8 lines
134 B
JavaScript
'use strict';
|
|
|
|
export default function bind(fn, thisArg) {
|
|
return function wrap() {
|
|
return fn.apply(thisArg, arguments);
|
|
};
|
|
}
|