to-negative-array
v1.0.2
Published
A JavaScript Package For Converting Positive Value To negative. Also works when non-numbers are present as well.
Downloads
5
Maintainers
Readme
to-negative-array
A JavaScript Package For Converting Positive Value To negative. Also works when non-numbers are present as well.
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 [email protected] (https://bd.linkedin.com/in/prosen-ghosh-baba9aa8)
License
- MIT