A package with functions for example, sum 2 numbers
A lodash ripoff
I just reialized that functionKit is a lodash ripoff!
npm i functionkit
or
npm install functionkit
import { sum, subtract, greet, divide } from 'functionKit';
// Greeter
console.log(greet('Shehab'));
// Hello Shehab
// Custom Greeting
console.log(greet('Shehab', 'Welcome back,'));
// Welcome back, Shehab
// Math
// sum (add)
console.log(sum([1, 1]));
// 2
// Same as: 1 + 1
// subtract (the opposite of sum)
console.log(subtract(1, 3));
// 3
// Same as: 1 - 3
// Divide (i can't simplify it.)
console.log(divide(55, 11));
// 5
// Same as: 55 / 11
For more documentation, head over to shahoob.github.io/functionKit