npm.io
1.0.0 • Published 12 years ago

define-constant

Licence
Version
1.0.0
Deps
0
Vulns
0
Weekly
0

define-constantNPM versionspm version

define constant in nodejs or window

#USAGE

1. nodejs

global.CONFIG = {};
var constant = require('define-constant')(global.CONFIG);

constant('a', 1);
constant('b', {
	a: 1,
	b: 2
});

2. window

window.CONFIG = {};
var constant = require('define-constant')(window.CONFIG);

constant('a', 1);
constant('b', {
	a: 1,
	b: 2
});

Keywords