+0
-1
@@ -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", |
+1
-1
@@ -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] |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
0
-100%