/
astafievk
/
source_code
Обзор
Документация
Войти
/
astafievk
/
source_code
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Api/node_modules/validator/es/lib/isVariableWidth.js
7 строк
256 B
astafievK
source code
21 июн 2024, 21:02
21 июн 2024, 21:02
37a1d03
Код
Авторство
О чём код?
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); }