0.0.4 • Published 6 months ago

@ortac/libs-js v0.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Ortac library of useful Javascript/Typescript functions

Typescript Node.js CI Node.js CI Coverage Status

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