1.0.5 • Published 3 years ago

ezyutil.js v1.0.5

Weekly downloads
6
License
MIT
Repository
github
Last release
3 years ago

EzyUtil.js

(Beta version) A JavaScript utility library.


Installation

Using NPM

npm install ezyutil.js --save

Using Yarn

yarn add ezyutil.js


Usage

import { addNumbers, multiplyNumbers, concatStrings } from 'ezyutil.js';

OR

const { addNumbers, multiplyNumbers, concatStrings } = require('ezyutil.js');

After importing:

console.log(addNumbers(1,2,3,4,5........)); // add N numbers
console.log(multiplyNumbers(1,2,3,4,5........)); // multiply N numbers
console.log(concatStrings("Hello", " ", "world")); // concat N strings

Another way

You can also add this package directly to your HTML file in the following way:

```
<script src="https://unpkg.com/ezyutil.js@1.0.5/ezyutil.js"></script>
```

After this, you can use all functionality in following way:

console.log(ezyutil.addNumbers(1,2,3,4,5........)); // add N numbers
console.log(ezyutil.multiplyNumbers(1,2,3,4,5........)); // multiply N numbers
console.log(ezyutil.concatStrings("Hello", " ", "world")); // concat N strings

All functions are available with ezyutil object.


Roadmap

This is just a initial setup of library. A lot more is on the way. Stay tuned for updates.

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago