aboutsummaryrefslogtreecommitdiff
path: root/src/lstrlib.js
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2017-12-10 02:10:35 +1100
committerdaurnimator <quae@daurnimator.com>2017-12-10 02:36:36 +1100
commitfa8ba4f04623f66962c9fa2a502dd8d51a3eefa6 (patch)
tree2a0bafe9ca9c965544df25c3046b078a6141b351 /src/lstrlib.js
parent562ad6f874564c3770d096711f443b49f59ef686 (diff)
downloadfengari-fa8ba4f04623f66962c9fa2a502dd8d51a3eefa6.tar.gz
fengari-fa8ba4f04623f66962c9fa2a502dd8d51a3eefa6.tar.bz2
fengari-fa8ba4f04623f66962c9fa2a502dd8d51a3eefa6.zip
src/: Comment out unused constants/functions
Diffstat (limited to 'src/lstrlib.js')
-rw-r--r--src/lstrlib.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lstrlib.js b/src/lstrlib.js
index 88518e7..cfd1c28 100644
--- a/src/lstrlib.js
+++ b/src/lstrlib.js
@@ -148,7 +148,7 @@ const lua_number2strx = function(L, fmt, x) {
** is maximum exponent + 1). (99+3+1 then rounded to 120 for "extra
** expenses", such as locale-dependent stuff)
*/
-const MAX_ITEM = 120;// TODO: + l_mathlim(MAX_10_EXP);
+// const MAX_ITEM = 120;// TODO: + l_mathlim(MAX_10_EXP);
/* valid flags in a format specification */
@@ -157,7 +157,7 @@ const FLAGS = ["-".charCodeAt(0), "+".charCodeAt(0), " ".charCodeAt(0), "#"
/*
** maximum size of each format specification (such as "%-099.99d")
*/
-const MAX_FORMAT = 32;
+// const MAX_FORMAT = 32;
// TODO: locale ? and do it better
const isalpha = e => ('a'.charCodeAt(0) <= e && e <= 'z'.charCodeAt(0)) || (e >= 'A'.charCodeAt(0) && e <= 'Z'.charCodeAt(0));