/**
* Check if value is nullish (`void`, `null` or `undefined`).
* @param {*} value - Value that will be checked.
* @returns {Boolean}
*/functionisNullish(value) {
return value == null;
}
export { isNullish asdefault };
//# sourceMappingURL=main.mjs.map