0.1.0 • Published 6 years ago

js-basic-utils v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

Basic-Util

Installation

Run npm install js-basic-utils to get Started!

Examples / How to Use

So i know you guys don't know how to code, but this NPM Package will help you guys make it Easier! In fact, here are some examples on how to Use it!

sortStrings Function

const basicUtil = require('js-basic-utils'); // Require the Package

basicUtil.sortStrings(['Hello!', 'What\'s Up?', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'This is an Example']); // This will Return Z - A [ 'What\'s Up?',  'This is an Example',  'Hello!',  'ABCDEFGHIJKLMNOPQRSTUVWXYZ' ];

/* We can also sort it by A - Z by adding the boolean true */

basicUtil.sortStrings(['Hello!', 'What\'s Up?', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'This is an Example'], true); // This will Return A - Z [ 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'Hello!', 'This is an Example', 'What\'s Up?' ]

sortNumbers Function

const basicUtil = require('js-basic-utils'); // Require the Package

basicUtil.sortNumbers([1, 2, 5, 4, 3]); // Returns 5 - 1 [5, 4, 3, 2 ,1];

/* We can also sort it by 1 - 5 */

basicUtil.sortNumbers([1, 2, 5, 4, 3], true); // Returns 1 - 5 [1 , 2, 3, 4, 5];

randomNumbers Function

const basicUtil = require('js-basic-utils'); // Require the Package

basicUtil.randomNumbers(10); // Chooses a Number between 0 - 10, works for Strings as well!

/* We can also let it use Decimal, if we add false at the end */

basicUtil.randomNumbers(10); // Choose a Number with Decimals between 0 -10, works for Strings as well!

// WARNING: IF YOU USE STRING, AND DID NOT USE NUMBERS, IT WILL RETURN NaN!

randomizeString Function

const basicUtil = require('js-basic-utils'); // Require the Package

basicUtil.randomizeString('THIS IS AWESOME!'); // Randomizes those Strings, might return: I A!MT SHIOEWESS

randomizeArray Function

const basicUtil = require('js-basic-utils'); // Require the Package

basicUtil.randomizeArray(['Hello!', 'Hi!', 'How are you?']); // Picks a random Element from the Array. Might Return: Hi!

Support

Click Here!

0.1.0

6 years ago