1.0.1 • Published 6 years ago

@iannazzi/array-help v1.0.1

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

Javascript Array Help

javascript functions to help with arrays

Build Status Coverage Status

Installation

npm install @iannazzi/array-help

Usage

require(@iannazzi/array-help)
import {is_array} from array-help

//or use the browser ready script
<script src="dist/array-help.umd.js"></script>
let a = 'string';
let c = array_help.is_array(a);
console.log(c);

Tests

npm test

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code.

Some info that helped me get this done...

https://codeburst.io/how-to-create-and-publish-your-first-node-js-module-444e7585b738

git add .
git commit -m “Initial release”
git tag v0.1.0
git push origin master --tags
npm publish --access=public