UNPKG

find-node-modules

Version:

Return an array of all parent node_modules directories

11 lines (8 loc) 172 B
function FooSingleton () { } var instance = null exports.getInstance = function () { if (instance === null) { instance = new FooSingleton() } return instance }