industry-functions

0.4.0 • Public • Published

IndustryFunctions Build Status

Retrieve factory instance and class methods.

Usage

import { factory } from "industry"
import { instance } from "industry-instance"
import { functions } from "industry-functions"
 
class Test {
  hello() {}
  static world() {}
}
 
let test = factory(Test)
  .set("instance", instance)
  .set("functions", functions)
 
test().functions()             // { 'hello' => [Function: hello] }
test().constructor.functions() // { 'world' => [Function: world] }

Readme

Keywords

none

Package Sidebar

Install

npm i industry-functions

Weekly Downloads

1

Version

0.4.0

License

MIT

Last publish

Collaborators

  • winton