micro-fp-tools-js/README.md
Andros Fenollosa 9e6549b153 Update format
2022-02-05 18:14:35 +01:00

31 lines
548 B
Markdown

# 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.
## Example
```typescript
```
## Compile
Install Typescript
```shell
npm install -g typescript
```
And build.
```shell
make build
````
Check 'dist' folder.