frontend/.pnpm-store/v3/files/45/cf6fc4a6d9c752a31c1eaed78c15ff00b4edaaea43e173dc7eb0fc9f1e1a0cd9522304bd444720c8f888867659caf75944d873bb3bf19482df6580942a0e69

7 lines
256 B
Plaintext

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);
}