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

check-speed

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

check-speed - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

15

build/src/results.js

@@ -51,4 +51,3 @@ "use strict";require("core-js/modules/es.array.flat-map");require("core-js/modules/es.array.iterator");require("core-js/modules/es.array.unscopables.flat-map");Object.defineProperty(exports,"__esModule",{value:true});exports.getResults=void 0;var _measure=require("./measure.js");

const titleA=variant===undefined?title:`${title} (${variant})`;
const mainA=
variantArgs===undefined?main:main.bind(null,...variantArgs);
const mainA=useVariantArgs(main,variantArgs);

@@ -59,2 +58,14 @@ const durations=loop.map(()=>(0,_measure.measure)(mainA));

};
const useVariantArgs=function(main,variantArgs){
if(variantArgs===undefined){
return main;
}
if(Array.isArray(variantArgs)){
return main.bind(null,...variantArgs);
}
return main.bind(null,variantArgs);
};
//# sourceMappingURL=results.js.map

2

package.json
{
"name": "check-speed",
"version": "0.0.2",
"version": "0.0.3",
"main": "build/src/main.js",

@@ -5,0 +5,0 @@ "files": [

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