Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
nodejs
/
daily_store_reports_nodejs
/
node_modules
/
proxyquire
/
test
/
samples
:
foo-singleton.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
function FooSingleton () { } var instance = null exports.getInstance = function () { if (instance === null) { instance = new FooSingleton() } return instance }