1.0.4 • Published 4 years ago
practice-node-module-es6 v1.0.4
Foobar
practice-es6 is a practice node module with random code in it.
Installation
Use the package manager npm to install foobar.
npm i practice-node-module-es6
Usage
import autoProxy from 'practice-node-module-es6';
# returns 'proxy'
autoProxy();
import calculateRectangleArea from 'practice-node-module-es6';
# returns 'area'
const width = 5;
const length = 5;
const area = calculateRectangleArea(width, length);
console.log(area);
result should be 25;
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.