Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

minilisp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minilisp - npm Package Compare versions

Comparing version
0.0.0
to
1.0.0
+0
-1
example.js

@@ -25,2 +25,1 @@ const minilisp = require('./')

console.log(prog()) // prints 2!
+1
-1
{
"name": "minilisp",
"version": "0.0.0",
"version": "1.0.0",
"description": "Small and minimalistic LISP interpreter",

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

@@ -10,3 +10,3 @@ module.exports = function normalise (s) {

stack.push(next)
} else if (t === ')'){
} else if (t === ')') {
if (!stack.length) throw new Error('Unexpected )')

@@ -13,0 +13,0 @@ if (stack.length === 1) return stack[0]