UNPKG

always-helper

Version:

前端项目开发中,经常会用到一些工具函数的合集。

7 lines (6 loc) 201 B
/** * 数字三位小数点 * https://stackoverflow.com/questions/6784894/add-commas-or-spaces-to-group-every-three-digits */ declare const commafy: (num: number) => string; export default commafy;