Skip to content

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.

License

Notifications You must be signed in to change notification settings

jcedb/js-core-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

License

MIT

About

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.

Resources

License

Stars

Watchers

Forks

Packages

No packages published