@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
14 lines (10 loc) • 344 B
text/typescript
export function min (value: any, options: any = { value: 0 }): boolean {
if (value === undefined || value === null) {
return false;
}
const process = (v: any) => Number(v);
if (Array.isArray(value)) {
return value.every((v) => process(v) >= options.value);
}
return process(value) >= options.value;
}