simple-methodize-x
v1.0.4
Published
Methodize a prototype method. Compliant to 8 arguments.
Maintainers
Readme
simple-methodize-x
Methodize a prototype method. Compliant to 8 arguments.
module.exports ⇒ * ⏏
Methodize a prototype method. Compliant to 8 arguments.
Kind: Exported member
Returns: Function - The static method.
Throws:
- TypeError If prototypeMethod is not a function.
| Param | Type | Description | | --------------- | --------------------- | --------------------- | | prototypeMethod | Function | The prototype method. |
Example
import methodize from 'simple-methodize-x';
const push = methodize([].push);
const array = [];
push(array, 1);
push(array, 2);
console.log(array); // [1, 2]