May be some useful tools for finch (tsfinch) .
``typescript`
import {fixIntegerLength} from 'finch-tools';
fixIntegerLength(123,5);
//"00123"
* getRandomString : 随机字符串
`typescript`
import {getRandomString} from 'finch-tools';
getRandomString(5);
//"AYIGJ"
getRandomString();
//"YUIJhgftYuHGVbnmGFtRfVNKHKklloYv"
* getReadableDate : 可读时间戳
`typescript``
import {getReadableDate} from 'finch-tools';
getReadableDate(5);
//"2020_02_26_14_25__325"