1.0.0 • Published 2 months ago

ls-arrayv1 v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 months ago

Ls-v1

A collection of funky utility functions for Node.js

Installation

You can install this module via npm: npm install ls-v1

Usage

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