/** * Returns `true` if value is not null, undefined, or an empty * * @example * ```typescript * isNotEmpty(null); // => false * isNotEmpty(undefined); // => false * isNotEmpty(''); // => false * isNotEmpty(' '); // => true * isNotEmpty('a'); // => true * isNotEmpty(0); // => true * ``` * * @example * ```typescript * const foo: number | null | '' = null; * if (isNotEmpty(foo)) { * const bar = foo; // bar :: number * } * ``` * * @see {@link isEmpty} */ declare const isNotEmpty: ( value: T, ) => value is Exclude; export default isNotEmpty; //# sourceMappingURL=isNotEmpty.d.ts.map