utils_helper_js
v1.0.4
Published
Helper Function for NodeJS.
Downloads
3
Maintainers
Readme
utils_helper_js
Getting Started
npm install utils-helper_js
Prerequisites
The things you need before installing the software.
Example
//test.js.
const { addNumbers, multiplyNumbers } = require("nodejs_utils_helper");
function checkAdd() {
const numArr = [1, 2, 3, 4];
console.log(addNumbers(numArr));
}
checkAdd();
//Run "node test.js" to see the output.
Roadmap.
- [x] ~~Add Readme~~.
- [ ] Utils/Helper Functions.
- [ ] Helper function to Perform Math Operations.
- [x] ~~Function to Add all numbers in an Array.~~
- [x] ~~Function to Multiple all numbers in an Array.~~
- [ ] Function to Subtract all numbers in an Array.
- [ ] Function to Divid and Module all numbers in an Array.
- [ ] Helper function to find DOB difference based.
- [x] ~~Helper function to return full name based on first name, last name, middle name.~~
- [ ] Helper function to Perform Math Operations.
- [ ] Typescript compatibility.