mirror of
https://gitee.com/la-vie/console-pro-free.git
synced 2025-01-29 22:31:41 +00: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);
|
|
};
|
|
}
|