@jswork/next-stub-singleton
v1.0.7
Published
Stub code for singleton.
Downloads
297
Readme
next-stub-singleton
Stub code for singleton.
installation
yarn add @jswork/next-stub-singleton
usage
import "@jswork/next-stub-singleton";
class Person {
constructor(public name) {
this.name = name;
}
}
Object.assign(Person, nx.stubSingleton());
const app = (Person as unknown as SingletonType).getInstance("abc");
console.log(app);
license
Code released under the MIT license.