UNPKG

nsn-comp

Version:

NSN核心组件

15 lines (11 loc) 328 B
import { NConst } from 'nsn-const'; var getStrFullLength = function getStrFullLength(str) { return str.split(NConst.EMPTY).reduce(function (pre, cur) { var charCode = cur.charCodeAt(0); if (charCode >= 0 && charCode <= 128) { return pre + 1; } return pre + 2; }, 0); }; export { getStrFullLength };