1.0.0 • Published 7 years ago

smallest-element v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

smallest-element

A JavaScript Package for finding the smallest element of an array.

npm license github-issues

nodei.co

travis-status stars forks

Features

npm Install

npm install --save smallest-element

Scripts Tag

For Development

<script src="https://rawgit.com/Prosen-Ghosh/smallest-element/master/smallest.js"></script>

For Production

<script src="https://cdn.rawgit.com/Prosen-Ghosh/smallest-element/9406abf2/smallest.js"></script>

Usage

const small = require('smallest-element');

small([1,2,3,-10]);
//=> -10

small([1,2,3,-10,{}]);
//=> -10

small([1,2,3,-10,-100,[]]);
//=> -100

small([]);
//=> null

small(); //withour parameter this function will throw a type error
//=> TypeError: smallest() expects an array parameter

Author

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

License

  • MIT