Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

v0.3.4

Compare
Choose a tag to compare
@doug-martin doug-martin released this 02 Aug 00:47
· 37 commits to master since this release
  • Update comb.string.format to handle signing numbers with padding properly
    • comb.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"