define-static-method

1.0.1 • Public • Published

Define Static Method

Version License Build Coverage Dependencies

Define Static Method is a simple utility for defining a static method in ES5 with the same property descriptor as an ES2015 class method.

Install

Install with npm:

npm install --save define-static-method

Usage

In ES2015, we might do this:

class Squid {
  constructor(name) {
    this.name = name;
  }
  static createVladimir() {
    return new Squid('Vladimir');
  }
}

In ES5, we can do this:

var defineStatic = require('define-static-method');
 
function Squid(name) {
  this.name = name;
}
 
defineStatic(Squid, 'createVladimir', function() {
  return new Squid('Vladimir');
});

And here is Vladimir:

Squid.createVladimir().name; // -> 'Vladimir'

API

defineStaticMethod(constructor, prop, method)

Param Type Description
constructor function The constructor function the method will be added to
prop string The property name of the method
method function The static method to add

License

Copyright © 2016 Akim McMath. Licensed under the MIT License.

Package Sidebar

Install

npm i define-static-method

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • akim-mcmath