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

ts-node

Package Overview
Dependencies
Maintainers
1
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-node - npm Package Compare versions

Comparing version 3.2.2 to 3.3.0

9

dist/index.js

@@ -274,4 +274,6 @@ "use strict";

var output_1 = getFile(outputPath);
cache.outputs[fileName] = output_1;
return output_1;
if (isValidCacheContent(output_1)) {
cache.outputs[fileName] = output_1;
return output_1;
}
}

@@ -306,2 +308,5 @@ catch (err) { }

}
function isValidCacheContent(content) {
return /(?:9|0=|Q==)$/.test(content.slice(-3));
}
function getCompilerDigest(opts) {

@@ -308,0 +313,0 @@ return crypto.createHash('sha256').update(JSON.stringify(opts), 'utf8').digest('hex');

{
"name": "ts-node",
"version": "3.2.2",
"version": "3.3.0",
"description": "TypeScript execution environment and REPL for node",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

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