namespacerjs
v0.6.1
Published
Utility for quick namespacing objects
Downloads
1
Readme
Namespacer.js
A simple library for creating namespaces in the browser
// Create the namespace
Namespacer('foo.bar.baz')
// Use the namespace
foo.bar.baz = {
a: 1
}
// Pass an object directly
Namespacer('foo.bar.baz', {
a: 1
})''
// Retrieve an object from a namespace, if it doesn't exist it will just return an empty object
var a = Namespacer('foo.bar.baz');
Namespacer takes care of not replacing existing objects.
Install
npm install namespacerjs
Test
webpack
Open test/index.html in a browser
or
npm test
Build
npm install
webpack