@ortac/libs-js - v0.0.4

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

Generated using TypeDoc