New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

timeliner

Package Overview
Dependencies
Maintainers
1
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

timeliner - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

4

lib/reporters/basic.js

@@ -55,4 +55,4 @@ const statistics = require('statistics');

function result (timings, key) {
const results = timings.map(t => t[key]).filter(t => t);
const stats = results.length ? results.reduce(statistics) : {};
const results = timings.map(t => t[key]).filter(t => typeof t === 'number');
const stats = results.length > 1 ? results.reduce(statistics) : { mean: results[0], stdev: 0 };
return {

@@ -59,0 +59,0 @@ mean: stats.mean,

{
"name": "timeliner",
"version": "2.0.0",
"version": "2.0.1",
"description": "Automated Browser Timeline Analyser",

@@ -8,3 +8,5 @@ "main": "index.js",

"scripts": {
"test": "semistandard && semistandard bin/timeliner"
"test:lint": "semistandard && semistandard bin/timeliner",
"test:unit": "mocha test --recursive",
"test": "npm run test:lint && npm run test:unit"
},

@@ -37,4 +39,5 @@ "repository": {

"devDependencies": {
"mocha": "^3.2.0",
"semistandard": "^9.1.0"
}
}

Sorry, the diff of this file is not supported yet

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