0.6.1 • Published 9 years ago

namespacerjs v0.6.1

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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