1.0.1 • Published 7 years ago
ebabel-count-array-elements v1.0.1
ebabel-count-array-elements
Returns an object that counts how many times each element is present in a given array.
Module install and usage in your game
Install
npm install --save ebabel-count-array-elementsUsage
const count-array-elements = require('ebabel-count-array-elements');
const result = count-array-elements(['orc', 'goblin', 'orc', 'orc', 'elf']);Development of this module
Fork this repository on Github, git clone your repository, checkout the develop branch, and when you are done, submit a pull request from your repository develop branch to this repository develop branch.
- fork this repository on github.com
- git clone your forked repository.
- git checkout develop
First step when developing
npm installRun linting and unit tests
npm testAn html coverage report is to be found in the coverage folder.
Generate documentation
npm run jsdocThe generated documentation is to be found in the docs folder.