/** * Determines if the provided Property is Null or Empty (or whitespace if string-value). * @param {any} property The Property to checked. * @returns {boolean} If the Property is Null or Empty or has * not "length" as property true otherwise false. * @since 1.0.0 */ export default function isNullOrEmpty(property: any): property is null | undefined; //# sourceMappingURL=isNullOrEmpty.d.ts.map