UNPKG

asksuite-core

Version:
9 lines (8 loc) 212 B
module.exports = class Singleton { // Abstract constructor() { if (this.constructor === Singleton) { throw new TypeError('Abstract class "Singleton" cannot be instantiated directly.'); } } };