mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-10 05:48: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);
|
||
|
};
|
||
|
}
|