js-core-utils
v1.1.1
Published
An all-purpose out-of-the-box utility package library for Javascript Developers who are tired of always writing utility function codes again and again.
Downloads
2
Readme
js-core-utils
An all-purpose out-of-the-box utility package library for Javascript Developers who are tired of always writing utility function codes again and again.
Installation
Use npm to install js-core-utils.
npm install js-core-utils --save
Usage
import { objectLoop } from 'js-core-utils';
objectLoop(
{
name: 'John Doe',
age: 24,
},
(data, index) => {
const { key, value } = data;
console.log(key, value);
}
);
// name John Doe
// age 24
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.