Git Product home page Git Product logo

mundane-utils's Introduction

mundane-utils

Utility functions for common tasks in JavaScript that you hate to have to write out all the time plus some that may come in handy

Installation

npm i mundane-utils

Uses

const utils = require('mundane-utils');

getRanNum(min, max)

Returns random integer between min and max

utils.getRanNum(1,10);

makeid(length)

Returns a string of length length of random letters and numbers.

utils.makeid(5);

objIsEmpty(obj)

Checks if JavaScript object is empty. This includes null and undefined objects

const obj1 = {};
const obj2 = {foo: 'bar'};

// Returns true
utils.objIsEmpty(obj1);

// Returns false
utils.objIsEmpty(obj2);

printTime(timeInSeconds)

Pretty prints time in seconds in HH:MM:SS format. If time is less than an hour then hours are not included

const time1 = 63;
const time2 = 7248;

// Returns 01:03
utils.printTime(time1);

// Returns 2:00:48
utils.printTime(time2);

removeArrayItem(item, array)

Removes specified item from array and returns the new array.

let ar = ['a','b','c'];

// Returns ['b', 'c']
ar = utils.removeArrayItem('a', ar);

// Returns ['b', 'c']
ar = utils.removeArrayItem('d', ar);

stringIsEmpty(string)

Checks if string is empty. This includes null and undefined strings

const str1 = '';
const str2 = undefined;
const str3 = 'hello world';

// Returns true
utils.stringIsEmpty(str1);

// Returns true
utils.stringIsEmpty(str2);

// Returns false
utils.stringIsEmpty(str1);

stringUnNull(string)

If the string is null or undefined, it returns a blank string. Else returns input string

const str1 = null;
const str2 = undefined;
const str3 = 'hello world';

// Returns ''
utils.stringUnNull(str1);

// Returns ''
utils.stringUnNull(str2);

// Returns 'hello world'
utils.stringUnNull(str1);

mundane-utils's People

Contributors

ttse76 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.