@ortac/libs-js
v0.0.4
Published
A collection of library functions useful for Ortac development in javascript and typescript
Downloads
1
Readme
Ortac library of useful Javascript/Typescript functions
Install
> npm install @ortac/libs-js
Features
- Works with CommonJS and ESM
- Provides Typescript types
Usage
ESM:
import {argv, log} from '@ortac/libs-js';
log.info('Completed something');
CommonJS:
var log = require('@ortac/libs-js').log;
log.info('Completed something');
API Reference
Documentation can be found at:
Contributing
Make sure your code passes testing, and create a Pull Request
> npm test