@slime/stopwatch
Advanced tools
Comparing version 1.1.0 to 1.2.0
@@ -58,3 +58,3 @@ class StopWatch{ | ||
let millaSecondAs2DigitNumberAsString = "0" + String(Math.floor(this.getCurrentMillaSecondElapsedAsFraction * 10)); | ||
let millaSecondAs2DigitNumberAsString = "0" + String(Math.round(this.getCurrentMillaSecondElapsedAsFraction * 10)); | ||
@@ -61,0 +61,0 @@ return `${minsAs2Digits}:${secondsAs2Digits}:${millaSecondAs2DigitNumberAsString}`; |
{ | ||
"name": "@slime/stopwatch", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"description": "a class for handling and printing elapsed time in ms, under the hood is just comparing timestamps with Date.now().", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
0