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 (7 loc) 259 B
import assertString from './util/assertString'; import { fullWidth } from './isFullWidth'; import { halfWidth } from './isHalfWidth'; export default function isVariableWidth(str) { assertString(str); return fullWidth.test(str) && halfWidth.test(str); }