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

tsun

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsun - npm Package Compare versions

Comparing version 0.4.0 to 0.5.0

7

bin/src/repl.js

@@ -22,3 +22,4 @@ "use strict";

.describe('v', 'Print compiled javascript before evaluating.')
.describe('dere', "I-its's not like I'm an option so DON'T GET THE WRONG IDEA!");
.describe('dere', "I-its's not like I'm an option so DON'T GET THE WRONG IDEA!")
.describe('ignore-undefined', 'Do not output the return value of a command if it evaluates to undefined');
var argv = options.argv;

@@ -148,3 +149,5 @@ var verbose = argv.verbose;

var result = vm.runInContext(current, context);
console.log(util.inspect(result, false, 2, true));
if (result === undefined && !argv['ignore-undefined']) {
console.log(util.inspect(result, false, 2, true));
}
}

@@ -151,0 +154,0 @@ catch (e) {

{
"name": "tsun",
"preferGlobal": true,
"version": "0.4.0",
"version": "0.5.0",
"description": "TSUN: a repl for TypeScript Upgraded Node",

@@ -6,0 +6,0 @@ "bin": "./bin/tsun",

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