Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 410 Bytes

README.md

File metadata and controls

20 lines (15 loc) · 410 Bytes

@ts-all/index

A set of utilities for TypeScript projects

Usage

$ npm install @ts-all/index
import { getRandomNum } from '@ts-all/index';

// outputs a random number in range of 9~99
console.log(getRandomNum(9, 99));
# add the flag to make node to find the esmodules
$ node --es-module-specifier-resolution=node ./dist/app.js