UNPKG

@inkline/inkline

Version:

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

7 lines 245 B
export function custom(value, options = { validator: () => true }) { if (value.constructor === Array) { return value.every((v) => options.validator(v)); } return options.validator(value); } //# sourceMappingURL=custom.mjs.map