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.

7 lines 207 B
import assertString from './util/assertString'; const octal = /^(0o)?[0-7]+$/i; export default function isOctal(str) { assertString(str); return octal.test(str); } //# sourceMappingURL=isOctal.js.map