blob: 890119ea3071644c87e3955ace6ff2db75af274e (
plain)
1
2
3
4
5
6
7
|
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);
}
|