From 827d24742bb44a67a4dcb77d727a6a73eb921f25 Mon Sep 17 00:00:00 2001 From: Sander Hautvast Date: Fri, 5 Mar 2021 18:48:52 +0100 Subject: [PATCH] added Math.E --- src/js/index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/js/index.js b/src/js/index.js index 27b3c0d..0054364 100644 --- a/src/js/index.js +++ b/src/js/index.js @@ -27,7 +27,8 @@ const keywords = { 'true': true, 'false': false, 'pi': Math.PI, - 'PI': Math.PI + 'PI': Math.PI, + 'e': Math.E } export const update_visible_objects = function () {