1.1.1 • Published 4 years ago

@feizheng/next-stub-singleton v1.1.1

Weekly downloads
8
License
MIT
Repository
-
Last release
4 years ago

next-stub-singleton

Stub code for singleton.

installation

npm install -S @feizheng/next-stub-singleton

usage

import '@feizheng/next-stub-singleton';

class App {}
Object.assign(App, nx.stubSingleton());
export default App;


// stub code:
{
  instance: null,
  getInstance: function() {
    if (!this.instance) {
      this.instance = new this();
    }
    return this.instance;
  }
}

resources

1.1.1

4 years ago

1.1.0

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago