UNPKG

212 BJavaScriptView Raw
1module.exports = class Singleton {
2 // Abstract
3 constructor() {
4 if (this.constructor === Singleton) {
5 throw new TypeError('Abstract class "Singleton" cannot be instantiated directly.');
6 }
7 }
8};