UNPKG

maycur-business

Version:

maycur business react components of web

12 lines (10 loc) 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports["default"] = isblank; // Copyright 2015-2018 FormBucket LLC // ISBLANK returns true when the value is undefined or null. function isblank(value) { return typeof value === "undefined" || value === null; }