README
js-tupler
A light and flexible library to parse collections data types into a js abstraction that could represent tuples
Installing:
Run npm install --save js-tupler
in your project's root folder.
Using:
Import js-tupler into your file/component using File System Modules or ES6 Modules:
- For File System Modules type
const Main = require('js-tupler');
at the top of your file/component. - For ES6 Modules type
import Main from 'js-tupler';
at the top of your file/component.
Contributing:
- Create an issue describing the changes.
- Clone the repo.
- Create a branch in the following pattern: {your username}-{feature name}-{optionally the issue number}.
- Make commits that should resolve a single feature.
- Use the comment to explain which files you modified.