RubyGems
npm
Organizations
Log in
Sign up
npm
fez-lisp
Versions diffs
1.0.28 → 1.0.29
fez-lisp 1.0.28 → 1.0.29
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (2)
hide
show
package/package.json
+1
-1
package/src/parser.js
+1
-0
package/package.json
CHANGED
Viewed
@@ -2,7 +2,7 @@
2
2
"name": "fez-lisp",
3
3
"description": "Lisp interpreted & compiled to JavaScript",
4
4
"author": "AT290690",
5
-
"version": "1.0.
28
",
5
+
"version": "1.0.
29
",
6
6
"type": "module",
7
7
"main": "index.js",
8
8
"keywords": [
package/src/parser.js
CHANGED
Viewed
@@ -49,5 +49,6 @@ export const stringify = (ast) => {
49
49
.join(' ')})`
50
50
else if (typeof ast === 'string') return `"${ast}"`
51
51
else if (typeof ast === 'function') return '()'
52
+
else if (typeof ast === 'boolean') return +ast
52
53
else return ast
53
54
}