Code Monkey home page Code Monkey logo

itsthere's Introduction

itsthere

Simply returns true if variable does not contain null, undefined and empty strings. That's what this module does basically.

Installation

Run the npm command below to install this node module.

npm i itsthere

Examples

Basic Usage

const itsthere = require('itsthere')

console.log(itsthere("hello world"))    // true
console.log(itsthere())                 // false

// Null & Undefined
console.log(itsthere(null))             // false
console.log(itsthere(undefined))        // false

// Empty Strings
console.log(itsthere(""))               // false
console.log(itsthere("       "))        // false
console.log(itsthere("   a    "))       // true

Array

const itsthere = require('itsthere')

// An empty array
var listOfCountryCodes = []
console.log(itsthere(listOfCountryCodes)) // false

// Remains true as long there is something in the array regardless of data type
var listOfCountryCodes = ['UK', 'SG', ' ', null]
console.log(itsthere(listOfCountryCodes)) // true

Object

const itsthere = require('itsthere')

// An empty object
var personInfo = {}
console.log(itsthere(personInfo)) // false

// Remains true as long there is something in the object regardless of data type
var personInfo = {'name':'John', 'age':15, 'isVerified':null}
console.log(itsthere(personInfo)) // true

Why use itsthere?

const itsthere = require('itsthere')

const randomHash = "0424974c68530290458c8d58674e2637f65abc127057957d7b3acbd24c208f93"

// Typical checking for null and undefined and empty strings
if (randomHash !== null || randomHash !== undefined || randomHash !== "") {
    console.log("accepted") // accepted
}
else{
    console.log("reject")
}

// A much shorter and easier alternative compared to the above
if (itsthere(randomHash)) {
    console.log("accepted") // accepted
}
else{
    console.log("reject")
}

License

MIT

itsthere's People

Contributors

muhdhasan avatar dylankjy avatar

Watchers

 avatar

itsthere's Issues

Missing package-lock.json

A package-lock.json should be committed to ensure that packages installed using npm install are 'locked' their correct versions

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.