Skip to content
导航栏

数字

calc

数字计算工具类

typescript
import { calc } from '@fang-kang/js-utils';

const a = 2;

const b = 1;

calc(`${a}+${b}`).value; // 3
calc(`${a}-${b}`).value; // 1
calc(`${a}*${b}`).value; // 2
calc(`${a}/${b}`).value; // 2

// 格式化

calc('1').format(); // 1.00

uppercaseNum

返回大写人民币

typescript
import { uppercaseNum } from '@fang-kang/js-utils';

uppercaseNum(1.5); // '壹元伍角'

uppercaseNum(100); // '壹佰元整'

Released under the MIT License.