mirror of
https://gitlab.com/mfocko/LeetCode.git
synced 2024-11-09 15:59:06 +01:00
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
/**
|
|
* @param {Object} context
|
|
* @param {any[]} args
|
|
* @return {any}
|
|
*/
|
|
Function.prototype.callPolyfill = function(context, ...args) {
|
|
return this.apply(context, args);
|
|
};
|
|
|
|
/**
|
|
* function increment() { this.count++; return this.count; }
|
|
* increment.callPolyfill({count: 1}); // 2
|
|
*/
|