UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

7 lines 136 B
module.exports = function zerofill(num, length) { num += ''; while (num.length < length) { num = '0' + num; } return num; };