@ehmoratallar/test
v1.0.5
Published
Testing NPM package creation and publishing
Downloads
3
Readme
This is a test to publish NPM Packages
This package is a javascript module that contains three demo functions:
- sayHello
- sayGoodbye
- echo
They receive a string parameter and return a string as well
Installation
npm install --save @ehmoratallar/test
Usage
const { sayHello, sayGoodbye, echo } = require('@ehmoratallar/test');
console.log(sayHello('Eduardo'));
console.log(sayGoodbye('Moratalla'));
console.log(echo('Test string'));