@mincomk/normalizer
TypeScript icon, indicating that this package has built-in type declarations

1.1.3 • Public • Published

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.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i @mincomk/normalizer

      Weekly Downloads

      0

      Version

      1.1.3

      License

      CC

      Unpacked Size

      3.05 kB

      Total Files

      5

      Last publish

      Collaborators

      • mincomk