UNPKG

@skhemata/skhemata-form

Version:

Skhemata Form Web Component. This web component can be used as base web component when working with forms and inputs.

10 lines (9 loc) 197 B
/** * Check if string is valid EAN: * Matches EAN-8/EAN-13 regex * Has valid check digit. * * @param {string} str * @return {boolean} */ export default function isEAN(str: string): boolean;