lei-ns
v0.4.1
Published
Organizing your code without writing wired variable constructs and helper objects
Downloads
27
Readme
lei-ns
Organizing your code without writing wired variable constructs and helper objects
Installation
$ npm install lei-ns --save
Usage
'use strict';
const createNamespace = require('lei-ns').create;
// you can specified a object when createNamespace()
const ns = createNamespace({a: {b: 123}});
// merge an object
ns.merge({a: {c: 456}, d: 789});
// get all data
console.log(ns.all());
// => { a: { b: 123, c: 456 }, d: 789 }
// get data
console.log(ns.get('a'));
// => { b: 123, c: 456 }
console.log(ns.get('a.c'));
// => 456
// set data
ns.set('a.d', 321);
// ns.get('a') => { b: 123, c: 456, d: 321 }
ns.set('e.f.g.h.i', true);
// ns.all() => { a: { b: 123, c: 456, d: 321 }, d: 789, { e: { f: { g: { h: { i: true } } } } } }
// if has specified namespace (value !== undefine)
console.log(ns.has('a'));
// => true
console.log(ns.has('a.a'));
// => false
// delete
ns.delete('a.b');
// => true
// ns.get('a') => { c: 456, d: 321 }
ns.delete('a.b');
// => false (because a.b does not exists now)
Reference
get(path)
- returns value by specifiedpath
, ifpath
does not exist returnsundefined
has(path)
- returnstrue
if the value of passingpath
isn'tundefined
set(path, value)
- define newvalue
by specifiedscore
delete(path)
- delete specifiedpath
merge(object)
- merge anobject
to theroot path
mergeTo(path, object)
- merge anobject
to the specifiedpath
push(path, value)
- push an item to the specifiedpath
pop(path, value)
- pop an item from the specifiedpath
all()
- returns the value ofroot path
lock(path)
- lock the specifiedpath
, prevents all changeslockAll()
- lock theroot path
, prevents all changes
License
Copyright (c) 2013-2016 Zongmin Lei <[email protected]>
http://ucdok.com
The MIT License
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.