UNPKG

ascor

Version:

一些常用的简单的js工具

9 lines (7 loc) 198 B
#### toThousands > 数组格式化 如 4567893 => 4,567,893 ```javascript import { toThousands } from "ascor"; toThousands(47894564); // 47,894,564 toThousands(9566526); // 9,566,526 ```