A factory whose token is produced by calling a function.
let i = 0 const fact = new ClosureFactory('someName', () => { i += 1 return i * 2 }) fact.produce([], []) // => 2 fact.produce([], []) // => 4
extollo (v. latin) - to lift up, to elevate
Extollo is a free & libre application framework in TypeScript.
A factory whose token is produced by calling a function.