Simple functional functions common to any development in Typescript or JavaScript.
Go to file
2022-02-09 16:57:28 +01:00
dist Add random 2022-02-06 22:26:49 +01:00
src Update fnTools.ts 2022-02-09 16:57:28 +01:00
Makefile Update format 2022-02-05 18:14:35 +01:00
README.md Add random 2022-02-06 22:26:49 +01:00

fnTools

Simple functional functions common to any development in Typescript or JavaScript.

  • inc: Increase the value of a number.
  • dec: Decrease the value of a number.
  • range: Returns an array with a sequence.
  • uniqValuesArray: Creates a duplicate-free version of an array.
  • cloneJSON: Clone JSON.
  • updateJSON: Returns a JSON with an updated value.
  • getRandom: Returns a random number from a range, with an optional number of decimal places.

Example

import * as fn from 'fnTools.js';

fn.getRandom(0, 6);
// 2

fn.range(4);
// [0, 1, 2, 3, 4]

CDN

<script type="module" src="https://cdn.jsdelivr.net/gh/tanrax/fn-js/dist/fnTools.min.js"></script>

Compile

Install Typescript

npm install -g typescript

And build.

make build

Check 'dist' folder.