Skip to content

Latest commit

 

History

History
57 lines (36 loc) · 1.81 KB

README.md

File metadata and controls

57 lines (36 loc) · 1.81 KB

js-library-boilerplate

License Travis CI Coverage Status Commitizen

js-library-boilerplate-description.

Installation

js-library-boilerplate is available on npm/yarn:

$ npm install js-library-boilerplate --save
$ yarn add js-library-boilerplate

Usage

With ES6/import

import { sum } from 'js-library-boilerplate';

sum(2, 2); // => 4

With require

const sum = require('js-library-boilerplate').sum;

sum(2, 2); // => 4

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

Changelog

This project adheres to Semantic Versioning. Every release, along with the migration instructions, is documented on the Github Releases page.

Bugs and Sugestions

Report bugs or do suggestions using the issues.

License

MIT License © Codevor