1.0.0 • Published 10 years ago

define-constant v1.0.0

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

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
});
1.0.0

10 years ago