Item Type
Item Name
Search file in folder and subfolders...
function FooSingleton () { } var instance = null exports.getInstance = function () { if (instance === null) { instance = new FooSingleton() } return instance }