1.0.2 • Published 6 years ago

to-negative-array v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

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
1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago