simple-methodize-x

Methodize a prototype method. Compliant to 8 arguments.


Keywords
bind, methodize, methodise, method, prototype, static, module, javascript, nodejs, browser
License
MIT
Install
npm install simple-methodize-x@1.0.4

Documentation

Travis status Dependency status devDependency status npm version jsDelivr hits bettercodehub score Coverage Status

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]