get-class-statics
v0.0.2
Published
Get the ES6-like class statics.
Downloads
1
Maintainers
Readme
Get Class Statics
Get the ES6-like class statics.
Example:
import getClassStatics from 'get-class-statics';
class Foo {
static bar() {
// bar method
}
}
var fooStaticMethods = getClassStatics(Foo); // return { bar: [Function: bar] }