From 35436a0a23ef2c76cc29fcda143d3f2432d57eda Mon Sep 17 00:00:00 2001 From: Devine Lu Linvega Date: Fri, 26 Jul 2019 07:56:06 +0900 Subject: [PATCH] * --- desktop/sources/scripts/lisp.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/desktop/sources/scripts/lisp.js b/desktop/sources/scripts/lisp.js index 5888fa3..47a422c 100644 --- a/desktop/sources/scripts/lisp.js +++ b/desktop/sources/scripts/lisp.js @@ -114,9 +114,9 @@ function Lisp (lib = {}, includes = []) { } else if (input.type === TYPES.identifier) { return context.get(input.value) } else if ( - input.type === TYPES.number || input.type === TYPES.symbol - || input.type === TYPES.string || input.type === TYPES.bool - ) { + input.type === TYPES.number || input.type === TYPES.symbol || + input.type === TYPES.string || input.type === TYPES.bool + ) { return input.value } }