This repository was archived by the owner on Dec 20, 2023. It is now read-only.
Releases: C2FO/comb
Releases · C2FO/comb
v1.2.0
Dependency fix
- Porting 1.1.0 code back to 1.0.1 so we don't have to updated all the dependent apps.
Improvement to Logging
- Adding the actual error to logging meta data.
Node 4-5 Support
- Node 4 and 5 support
- Updated to use jshint
- Added grunt
v0.4.0
- Update
comb.number.round
to default to newcomb.number.roundHalfUp
method.
v0.3.6
- Added new
timer
function to comb.logger.
v0.3.5
- Fixed issue where messages were not propagated down to appenders even if there level was set to accept them
- Added error logging to rolling file appender if there was an issue rolling over.
v0.3.4
- Update
comb.string.format
to 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"
v0.3.3
- Update
comb.string.format
to be supportcomb.string.format('% d', 10); //" 10"
comb.string.format('% d', -10); //"-10"
v0.3.2
- Update comb.string.format to be able to specify precision with numbers.