simple-methodize-x

v1.0.4
Methodize a prototype method. Compliant to 8 arguments.
bind methodize methodise method prototype static module javascript nodejs and 2 more...

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]
npm i simple-methodize-x

Metadata

  • MIT
  • >=8.11.4
  • Graham Fairweather
  • released 8/28/2019

Downloads

Maintainers