https://github.com/imqueue/js
JavaScript routines for @imqueue framework
https://github.com/imqueue/js
javascript-routines
Last synced: about 1 month ago
JSON representation
JavaScript routines for @imqueue framework
- Host: GitHub
- URL: https://github.com/imqueue/js
- Owner: imqueue
- License: isc
- Created: 2019-08-12T08:57:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-11-06T19:11:12.000Z (7 months ago)
- Last Synced: 2025-03-23T22:38:09.220Z (about 2 months ago)
- Topics: javascript-routines
- Language: TypeScript
- Size: 580 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# @imqueue/js
[](https://travis-ci.org/imqueue/js)
[](https://codebeat.co/projects/github-com-imqueue-js-master)
[](https://coveralls.io/github/imqueue/js?branch=master)
[](https://david-dm.org/imqueue/js)
[](https://david-dm.org/imqueue/js?type=dev)
[](https://snyk.io/test/github/imqueue/js?targetFile=package.json)
[](https://rawgit.com/imqueue/js/master/LICENSE)JavaScript routines used withing @imqueue framework
# Docs
~~~
git clone [email protected]:imqueue/js.git
npm run docs
~~~# Usage
~~~typescript
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'));
~~~## License
[ISC](https://github.com/imqueue/js/blob/master/LICENSE)