Licence
MIT
Version
0.4.0
Deps
1
Vulns
0
Weekly
0
IndustryFunctions 
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] }