UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

7 lines 267 B
export const checkRegex = (regex, value, parsedRepeat) => { if (parsedRepeat && parsedRepeat > 1) { return new RegExp(regex + '{' + parsedRepeat + ',}').test(value); } return new RegExp(regex).test(value); }; //# sourceMappingURL=checkRegex.js.map