A collection of funky utility functions for Node.js
You can install this module via npm: npm install ls-v1
const funkyUtils = require('funky-utils');
console.log(funkyUtils.reverseString('hello')); // olleh
console.log(funkyUtils.shuffleArray([1, 2, 3, 4, 5])); // Randomly shuffled array
console.log(funkyUtils.randomInteger(1, 10)); // Random integer between 1 and 10