UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

8 lines (6 loc) 231 B
export function custom (value: any, options: any = { validator: () => true }): boolean { if (value.constructor === Array) { return value.every((v) => options.validator(v)); } return options.validator(value); }