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 (6 loc) 170 B
import assertString from './util/assertString'; const octal = /^(0o)?[0-7]+$/i; export default function isOctal(str) { assertString(str); return octal.test(str); }