Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 | 12x 1x 11x 12x 12x 12x 12x | export function call(context, ...args) {
if (context === null || context === undefined) {
context = typeof window !== 'undefined' ? window : global
} else {
context = Object(context) // 原始值会被包装 如果是非原始值会直接返回
}
context.fn = this;
let ret = context.fn(...args)
delete context.fn
return ret
} |