1.1.3 • Published 2 years ago

@mincomk/normalizer v1.1.3

Weekly downloads
-
License
CC
Repository
github
Last release
2 years ago

Normalizer

Normalizer is created for normalize the array with numbers.

Installation

Tada! Normalizer supports TypeScript.

npm i @mincomk/normalizer

Usage

Using normalizer is super simple.

const { normalize } = require("@mincomk/normalizer");

let array = [2, 4, 6, -8];
let norm = normalize(array);
console.log(norm);

Or for TypeScript.

import { normalize } from "@mincomk/normalizer";

let array = [2, 4, 6, -8];
let norm = normalize(array);
console.log(norm);

Copyright

Copyright (c) Minco 2022 All right reserved.