Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-elapsed

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-elapsed - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

2

package.json

@@ -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.");

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc