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

@contrast/distringuish-prebuilt

Package Overview
Dependencies
Maintainers
12
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@contrast/distringuish-prebuilt - npm Package Compare versions

Comparing version 1.7.1 to 1.8.0

darwin-12.node

9

index.js

@@ -1,3 +0,10 @@

const distringuish = require(`${__dirname}/${process.platform}.node`);
const semver = require('semver');
let distringuish;
if (semver.lt(process.version, '12.0.0')) {
distringuish = require(`${__dirname}/${process.platform}.node`);
} else {
distringuish = require(`${__dirname}/${process.platform}-12.node`);
}
module.exports.externalize = (str) => {

@@ -4,0 +11,0 @@ if(typeof str === 'string')

7

package.json
{
"name": "@contrast/distringuish-prebuilt",
"version": "1.7.1",
"version": "1.8.0",
"description": "Contrast Security",

@@ -13,3 +13,6 @@ "main": "index.js",

"author": "Contrast Security",
"license": "UNLICENSED"
"license": "UNLICENSED",
"dependencies": {
"semver": "^6.3.0"
}
}
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