Copyright 2015-2021 JC Fisher
ISBLANK returns true when the value is undefined or null.
export default function isblank(value) { return typeof value === "undefined" || value === null; }