to-negative-array

1.0.2 • Public • Published

to-negative-array

A JavaScript Package For Converting Positive Value To negative. Also works when non-numbers are present as well.

npm license github-issues stars forks

Features

npm Install

npm install --save to-negative-array

Script Tag

For Development

<script src="https://rawgit.com/Prosen-Ghosh/to-negative-array/master/negative.js"></script>

For Production

<script src="https://cdn.rawgit.com/Prosen-Ghosh/to-negative-array/7d9e5e1c/negative.js"></script>

Usage

 
const toNegative = require('to-negative-array');
 
toNegative([]);
//=> null
 
toNegative([1,2,3,4,5]);
//=> [ -1, -2, -3, -4, -5 ]
 
toNegative([1,2,3,4,5,{}]);
//=> [ -1, -2, -3, -4, -5, {} ]
 
toNegative([1,2,3,4,5,{},[]]);
//=> [ -1, -2, -3, -4, -5, {}, [] ]
 
toNegative([1,2,3,4,5,{},[],""]);
//=> [ -1, -2, -3, -4, -5, {}, [], '' ]
 
toNegative([1,2,3,4,5,{},[],"",-100]);
//=> [ -1, -2, -3, -4, -5, {}, [], '', -100 ]
 
toNegative(); // without parameter thid function will throw a type error
//=> TypeError: negative() expects an array parameter
 
 

Author

Prosen Ghosh prosenghosh25@gmail.com (https://bd.linkedin.com/in/prosen-ghosh-baba9aa8)

License

  • MIT

Package Sidebar

Install

npm i to-negative-array

Weekly Downloads

1

Version

1.0.2

License

MIT

Last publish

Collaborators

  • prosen-ghosh