tailwind-compositor
Version:
Compositor is a system of constraints designed to produce aesthetically pleasing, typographic compositions, based on objective, constant dimensions of space.
14 lines (13 loc) • 403 B
TypeScript
export declare const is: {
truthy: (n: any) => boolean;
exists: (n: any) => boolean;
undefined: (n: any) => boolean;
array: (n: any) => boolean;
num: (n: any) => boolean;
func: (f: any) => boolean;
object: (n: any) => boolean;
emptyObject: (obj: any) => boolean;
string: (str: any) => boolean;
cssunit: (value: any) => boolean;
};
export default is;