Skip to content

Minco-inc/Normalizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

Array normalizer.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published