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.

9 lines 296 B
import assertString from './util/assertString'; /* eslint-disable no-control-regex */ const multibyte = /[^\x00-\x7F]/; /* eslint-enable no-control-regex */ export default function isMultibyte(str) { assertString(str); return multibyte.test(str); } //# sourceMappingURL=isMultibyte.js.map