grunt-elapsed
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -10,3 +10,3 @@ { | ||
], | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"homepage": "https://github.com/Leny/grunt-elapsed", | ||
@@ -13,0 +13,0 @@ "author": { |
@@ -62,3 +62,3 @@ "use strict"; | ||
total /= 1000; | ||
minutes = (minutes = Math.floor(total / 60)) > 60 ? (minutes / 60) % 60 : minutes; | ||
minutes = (minutes = Math.floor(total / 60)) > 60 ? Math.floor(minutes / 60) % 60 : minutes; | ||
hours = Math.floor(total / 3600); | ||
@@ -65,0 +65,0 @@ grunt.log.writeln("Time elapsed on project: ±" + (chalk.yellow(hours)) + " hours, " + (chalk.yellow(minutes)) + " minutes."); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9105