UNPKG

d2-ui

Version:
13 lines (9 loc) 213 B
var path = require('path'); function FooSingleton() { } var instance = null; exports.getInstance = function() { if (instance === null) { instance = new FooSingleton(); } return instance; };