@ddiabla/xtended-ts
v1.0.1-beta
Published
0 dependency utility library for TypeScript and JavaScript
Readme
xtended-ts
0 dependency library for TypeScript that extends the official TypeScript compiler with additional features. (also works on JavaScript)
Usage
Install
npm install --save xtended-tsAt the moment, the library is only used to extend the TypeScript compiler with additional features.
Also it has only 3 additional features
In the future, the library will have more features.
So, here's a example
import { randomNumber } from 'xtended-ts';
const random = randomNumber(0, 100);
console.log(random); //E.g: 30