fez-lisp 1.2.45 → 1.2.47
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -3
- package/lib/baked/std.js +1 -1
- package/package.json +1 -1
- package/src/utils.js +2 -2
package/package.json
CHANGED
package/src/utils.js
CHANGED
@@ -247,7 +247,7 @@ export const fez = (source, options = {}) => {
|
|
247
247
|
// if (options.check) typeCheck(ast)
|
248
248
|
if (options.compile) {
|
249
249
|
const js = Object.values(comp(deepClone(ast))).join('')
|
250
|
-
return
|
250
|
+
return js
|
251
251
|
}
|
252
252
|
return run(ast, env)
|
253
253
|
} else if (Array.isArray(source)) {
|
@@ -256,7 +256,7 @@ export const fez = (source, options = {}) => {
|
|
256
256
|
: source
|
257
257
|
if (options.compile) {
|
258
258
|
const js = Object.values(comp(deepClone(ast))).join('')
|
259
|
-
return
|
259
|
+
return js
|
260
260
|
}
|
261
261
|
return run(ast, env)
|
262
262
|
} else {
|