@imqueue/js
v1.4.0
Published
JavaScript routines for @imqueue framework
Downloads
986
Readme
@imqueue/js
JavaScript routines used withing @imqueue framework
Docs
git clone [email protected]:imqueue/js.git
npm run docs
Usage
import { js, object } from '@imqueue/js';
import isObject = js.isObject;
import get = object.get;
const obj = { { a: { b: { c: true } } } };
if (!isObject(obj)) {
throw new TypeError('Object required!');
}
console.log(get(obj, 'a.b.c'));