This repository was archived by the owner on Dec 20, 2023. It is now read-only.
v0.3.4
- Update
comb.string.formatto handle signing numbers with padding properlycomb.string.format('%+07.2d', 10); //"+010.00"comb.string.format('%+07.2d', -10); //"-010.00"comb.string.format('%+ 7.2d', 10); //" +10.00"comb.string.format('%+ 7.2d', -10); //" -10.00"