summaryrefslogtreecommitdiff
path: root/node_modules/locutus/c
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/c')
-rw-r--r--node_modules/locutus/c/index.js5
-rw-r--r--node_modules/locutus/c/index.js.map1
-rw-r--r--node_modules/locutus/c/math/abs.js20
-rw-r--r--node_modules/locutus/c/math/abs.js.map1
-rw-r--r--node_modules/locutus/c/math/frexp.js75
-rw-r--r--node_modules/locutus/c/math/frexp.js.map1
-rw-r--r--node_modules/locutus/c/math/index.js5
-rw-r--r--node_modules/locutus/c/math/index.js.map1
-rw-r--r--node_modules/locutus/c/stdio/index.js4
-rw-r--r--node_modules/locutus/c/stdio/index.js.map1
-rw-r--r--node_modules/locutus/c/stdio/sprintf.js135
-rw-r--r--node_modules/locutus/c/stdio/sprintf.js.map1
12 files changed, 0 insertions, 250 deletions
diff --git a/node_modules/locutus/c/index.js b/node_modules/locutus/c/index.js
deleted file mode 100644
index 784393d..0000000
--- a/node_modules/locutus/c/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict';
-
-module.exports['math'] = require('./math');
-module.exports['stdio'] = require('./stdio');
-//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/c/index.js.map b/node_modules/locutus/c/index.js.map
deleted file mode 100644
index 59ce353..0000000
--- a/node_modules/locutus/c/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../src/c/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,MAAf,IAAyBC,QAAQ,QAAR,CAAzB;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B","file":"index.js","sourcesContent":["module.exports['math'] = require('./math')\nmodule.exports['stdio'] = require('./stdio')\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/c/math/abs.js b/node_modules/locutus/c/math/abs.js
deleted file mode 100644
index c329bf3..0000000
--- a/node_modules/locutus/c/math/abs.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-
-module.exports = function abs(mixedNumber) {
- // discuss at: http://locutus.io/c/abs/
- // original by: Waldo Malqui Silva (http://waldo.malqui.info)
- // improved by: Karol Kowalski
- // improved by: Kevin van Zonneveld (http://kvz.io)
- // improved by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)
- // example 1: abs(4.2)
- // returns 1: 4.2
- // example 2: abs(-4.2)
- // returns 2: 4.2
- // example 3: abs(-5)
- // returns 3: 5
- // example 4: abs('_argos')
- // returns 4: 0
-
- return Math.abs(mixedNumber) || 0;
-};
-//# sourceMappingURL=abs.js.map \ No newline at end of file
diff --git a/node_modules/locutus/c/math/abs.js.map b/node_modules/locutus/c/math/abs.js.map
deleted file mode 100644
index 27a0950..0000000
--- a/node_modules/locutus/c/math/abs.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../../src/c/math/abs.js"],"names":["module","exports","abs","mixedNumber","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,GAAT,CAAcC,WAAd,EAA2B;AAC1C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,GAAL,CAASC,WAAT,KAAyB,CAAhC;AACD,CAhBD","file":"abs.js","sourcesContent":["module.exports = function abs (mixedNumber) {\n // discuss at: http://locutus.io/c/abs/\n // original by: Waldo Malqui Silva (http://waldo.malqui.info)\n // improved by: Karol Kowalski\n // improved by: Kevin van Zonneveld (http://kvz.io)\n // improved by: Jonas Raoni Soares Silva (http://www.jsfromhell.com)\n // example 1: abs(4.2)\n // returns 1: 4.2\n // example 2: abs(-4.2)\n // returns 2: 4.2\n // example 3: abs(-5)\n // returns 3: 5\n // example 4: abs('_argos')\n // returns 4: 0\n\n return Math.abs(mixedNumber) || 0\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/c/math/frexp.js b/node_modules/locutus/c/math/frexp.js
deleted file mode 100644
index 876e2f5..0000000
--- a/node_modules/locutus/c/math/frexp.js
+++ /dev/null
@@ -1,75 +0,0 @@
-"use strict";
-
-module.exports = function frexp(arg) {
- // discuss at: http://locutus.io/c/frexp/
- // original by: Oskar Larsson Högfeldt (http://oskar-lh.name/)
- // note 1: Instead of
- // note 1: double frexp( double arg, int* exp );
- // note 1: this is built as
- // note 1: [double, int] frexp( double arg );
- // note 1: due to the lack of pointers in JavaScript.
- // note 1: See code comments for further information.
- // example 1: frexp(1)
- // returns 1: [0.5, 1]
- // example 2: frexp(1.5)
- // returns 2: [0.75, 1]
- // example 3: frexp(3 * Math.pow(2, 500))
- // returns 3: [0.75, 502]
- // example 4: frexp(-4)
- // returns 4: [-0.5, 3]
- // example 5: frexp(Number.MAX_VALUE)
- // returns 5: [0.9999999999999999, 1024]
- // example 6: frexp(Number.MIN_VALUE)
- // returns 6: [0.5, -1073]
- // example 7: frexp(-Infinity)
- // returns 7: [-Infinity, 0]
- // example 8: frexp(-0)
- // returns 8: [-0, 0]
- // example 9: frexp(NaN)
- // returns 9: [NaN, 0]
-
- // Potential issue with this implementation:
- // the precisions of Math.pow and the ** operator are undefined in the ECMAScript standard,
- // however, sane implementations should give the same results for Math.pow(2, <integer>) operations
-
- // Like frexp of C and std::frexp of C++,
- // but returns an array instead of using a pointer argument for passing the exponent result.
- // Object.is(n, frexp(n)[0] * 2 ** frexp(n)[1]) for all number values of n except when Math.isFinite(n) && Math.abs(n) > 2**1023
- // Object.is(n, (2 * frexp(n)[0]) * 2 ** (frexp(n)[1] - 1)) for all number values of n
- // Object.is(n, frexp(n)[0]) for these values of n: 0, -0, NaN, Infinity, -Infinity
- // Math.abs(frexp(n)[0]) is >= 0.5 and < 1.0 for any other number-type value of n
- // See http://en.cppreference.com/w/c/numeric/math/frexp for a more detailed description
-
- arg = Number(arg);
-
- var result = [arg, 0];
-
- if (arg !== 0 && Number.isFinite(arg)) {
- var absArg = Math.abs(arg);
- // Math.log2 was introduced in ES2015, use it when available
- var log2 = Math.log2 || function log2(n) {
- return Math.log(n) * Math.LOG2E;
- };
- var exp = Math.max(-1023, Math.floor(log2(absArg)) + 1);
- var x = absArg * Math.pow(2, -exp);
-
- // These while loops compensate for rounding errors that sometimes occur because of ECMAScript's Math.log2's undefined precision
- // and also works around the issue of Math.pow(2, -exp) === Infinity when exp <= -1024
- while (x < 0.5) {
- x *= 2;
- exp--;
- }
- while (x >= 1) {
- x *= 0.5;
- exp++;
- }
-
- if (arg < 0) {
- x = -x;
- }
- result[0] = x;
- result[1] = exp;
- }
- return result;
-};
-//# sourceMappingURL=frexp.js.map \ No newline at end of file
diff --git a/node_modules/locutus/c/math/frexp.js.map b/node_modules/locutus/c/math/frexp.js.map
deleted file mode 100644
index 461d0ff..0000000
--- a/node_modules/locutus/c/math/frexp.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../../src/c/math/frexp.js"],"names":["module","exports","frexp","arg","Number","result","isFinite","absArg","Math","abs","log2","n","log","LOG2E","exp","max","floor","x","pow"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,KAAT,CAAgBC,GAAhB,EAAqB;AACpC;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEAA,QAAMC,OAAOD,GAAP,CAAN;;AAEA,MAAME,SAAS,CAACF,GAAD,EAAM,CAAN,CAAf;;AAEA,MAAIA,QAAQ,CAAR,IAAaC,OAAOE,QAAP,CAAgBH,GAAhB,CAAjB,EAAuC;AACrC,QAAMI,SAASC,KAAKC,GAAL,CAASN,GAAT,CAAf;AACA;AACA,QAAMO,OAAOF,KAAKE,IAAL,IAAa,SAASA,IAAT,CAAeC,CAAf,EAAkB;AAAE,aAAOH,KAAKI,GAAL,CAASD,CAAT,IAAcH,KAAKK,KAA1B;AAAiC,KAA/E;AACA,QAAIC,MAAMN,KAAKO,GAAL,CAAS,CAAC,IAAV,EAAgBP,KAAKQ,KAAL,CAAWN,KAAKH,MAAL,CAAX,IAA2B,CAA3C,CAAV;AACA,QAAIU,IAAIV,SAASC,KAAKU,GAAL,CAAS,CAAT,EAAY,CAACJ,GAAb,CAAjB;;AAEA;AACA;AACA,WAAOG,IAAI,GAAX,EAAgB;AACdA,WAAK,CAAL;AACAH;AACD;AACD,WAAOG,KAAK,CAAZ,EAAe;AACbA,WAAK,GAAL;AACAH;AACD;;AAED,QAAIX,MAAM,CAAV,EAAa;AACXc,UAAI,CAACA,CAAL;AACD;AACDZ,WAAO,CAAP,IAAYY,CAAZ;AACAZ,WAAO,CAAP,IAAYS,GAAZ;AACD;AACD,SAAOT,MAAP;AACD,CArED","file":"frexp.js","sourcesContent":["module.exports = function frexp (arg) {\n // discuss at: http://locutus.io/c/frexp/\n // original by: Oskar Larsson Högfeldt (http://oskar-lh.name/)\n // note 1: Instead of\n // note 1: double frexp( double arg, int* exp );\n // note 1: this is built as\n // note 1: [double, int] frexp( double arg );\n // note 1: due to the lack of pointers in JavaScript.\n // note 1: See code comments for further information.\n // example 1: frexp(1)\n // returns 1: [0.5, 1]\n // example 2: frexp(1.5)\n // returns 2: [0.75, 1]\n // example 3: frexp(3 * Math.pow(2, 500))\n // returns 3: [0.75, 502]\n // example 4: frexp(-4)\n // returns 4: [-0.5, 3]\n // example 5: frexp(Number.MAX_VALUE)\n // returns 5: [0.9999999999999999, 1024]\n // example 6: frexp(Number.MIN_VALUE)\n // returns 6: [0.5, -1073]\n // example 7: frexp(-Infinity)\n // returns 7: [-Infinity, 0]\n // example 8: frexp(-0)\n // returns 8: [-0, 0]\n // example 9: frexp(NaN)\n // returns 9: [NaN, 0]\n\n // Potential issue with this implementation:\n // the precisions of Math.pow and the ** operator are undefined in the ECMAScript standard,\n // however, sane implementations should give the same results for Math.pow(2, <integer>) operations\n\n // Like frexp of C and std::frexp of C++,\n // but returns an array instead of using a pointer argument for passing the exponent result.\n // Object.is(n, frexp(n)[0] * 2 ** frexp(n)[1]) for all number values of n except when Math.isFinite(n) && Math.abs(n) > 2**1023\n // Object.is(n, (2 * frexp(n)[0]) * 2 ** (frexp(n)[1] - 1)) for all number values of n\n // Object.is(n, frexp(n)[0]) for these values of n: 0, -0, NaN, Infinity, -Infinity\n // Math.abs(frexp(n)[0]) is >= 0.5 and < 1.0 for any other number-type value of n\n // See http://en.cppreference.com/w/c/numeric/math/frexp for a more detailed description\n\n arg = Number(arg)\n\n const result = [arg, 0]\n\n if (arg !== 0 && Number.isFinite(arg)) {\n const absArg = Math.abs(arg)\n // Math.log2 was introduced in ES2015, use it when available\n const log2 = Math.log2 || function log2 (n) { return Math.log(n) * Math.LOG2E }\n let exp = Math.max(-1023, Math.floor(log2(absArg)) + 1)\n let x = absArg * Math.pow(2, -exp)\n\n // These while loops compensate for rounding errors that sometimes occur because of ECMAScript's Math.log2's undefined precision\n // and also works around the issue of Math.pow(2, -exp) === Infinity when exp <= -1024\n while (x < 0.5) {\n x *= 2\n exp--\n }\n while (x >= 1) {\n x *= 0.5\n exp++\n }\n\n if (arg < 0) {\n x = -x\n }\n result[0] = x\n result[1] = exp\n }\n return result\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/c/math/index.js b/node_modules/locutus/c/math/index.js
deleted file mode 100644
index 8c55887..0000000
--- a/node_modules/locutus/c/math/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict';
-
-module.exports['abs'] = require('./abs');
-module.exports['frexp'] = require('./frexp');
-//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/c/math/index.js.map b/node_modules/locutus/c/math/index.js.map
deleted file mode 100644
index fe8b3a1..0000000
--- a/node_modules/locutus/c/math/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../../src/c/math/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,KAAf,IAAwBC,QAAQ,OAAR,CAAxB;AACAF,OAAOC,OAAP,CAAe,OAAf,IAA0BC,QAAQ,SAAR,CAA1B","file":"index.js","sourcesContent":["module.exports['abs'] = require('./abs')\nmodule.exports['frexp'] = require('./frexp')\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/c/stdio/index.js b/node_modules/locutus/c/stdio/index.js
deleted file mode 100644
index 758c66d..0000000
--- a/node_modules/locutus/c/stdio/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-'use strict';
-
-module.exports['sprintf'] = require('./sprintf');
-//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/c/stdio/index.js.map b/node_modules/locutus/c/stdio/index.js.map
deleted file mode 100644
index 5542070..0000000
--- a/node_modules/locutus/c/stdio/index.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../../src/c/stdio/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,SAAf,IAA4BC,QAAQ,WAAR,CAA5B","file":"index.js","sourcesContent":["module.exports['sprintf'] = require('./sprintf')\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/c/stdio/sprintf.js b/node_modules/locutus/c/stdio/sprintf.js
deleted file mode 100644
index c7d0cad..0000000
--- a/node_modules/locutus/c/stdio/sprintf.js
+++ /dev/null
@@ -1,135 +0,0 @@
-'use strict';
-
-function pad(str, minLength, padChar, leftJustify) {
- var diff = minLength - str.length;
- var padStr = padChar.repeat(Math.max(0, diff));
-
- return leftJustify ? str + padStr : padStr + str;
-}
-
-module.exports = function sprintf(format) {
- for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
- args[_key - 1] = arguments[_key];
- }
-
- // original by: Rafał Kukawski
- // example 1: sprintf('%+10.*d', 5, 1)
- // returns 1: ' +00001'
- var placeholderRegex = /%(?:(\d+)\$)?([-+#0 ]*)(\*|\d+)?(?:\.(\*|\d*))?([\s\S])/g;
-
- var index = 0;
-
- return format.replace(placeholderRegex, function (match, param, flags, width, prec, modifier) {
- var leftJustify = flags.includes('-');
-
- // flag '0' is ignored when flag '-' is present
- var padChar = leftJustify ? ' ' : flags.split('').reduce(function (pc, c) {
- return [' ', '0'].includes(c) ? c : pc;
- }, ' ');
-
- var positiveSign = flags.includes('+') ? '+' : flags.includes(' ') ? ' ' : '';
-
- var minWidth = width === '*' ? args[index++] : +width || 0;
- var precision = prec === '*' ? args[index++] : +prec;
-
- if (param && !+param) {
- throw Error('Param index must be greater than 0');
- }
-
- if (param && +param > args.length) {
- throw Error('Too few arguments');
- }
-
- // compiling with default clang params, mixed positional and non-positional params
- // give only a warning
- var arg = param ? args[param - 1] : args[index++];
-
- if (precision === undefined || isNaN(precision)) {
- precision = 'eEfFgG'.includes(modifier) ? 6 : modifier === 's' ? String(arg).length : undefined;
- }
-
- switch (modifier) {
- case '%':
- return '%';
- case 'd':
- case 'i':
- {
- var number = Math.trunc(+arg || 0);
- var abs = Math.abs(number);
- var prefix = number < 0 ? '-' : positiveSign;
-
- var str = pad(abs.toString(), precision || 0, '0', false);
-
- if (padChar === '0') {
- return prefix + pad(str, minWidth - prefix.length, padChar, leftJustify);
- }
-
- return pad(prefix + str, minWidth, padChar, leftJustify);
- }
- case 'e':
- case 'E':
- case 'f':
- case 'F':
- case 'g':
- case 'G':
- {
- var _number = +arg;
- var _abs = Math.abs(_number);
- var _prefix = _number < 0 ? '-' : positiveSign;
-
- var op = [Number.prototype.toExponential, Number.prototype.toFixed, Number.prototype.toPrecision]['efg'.indexOf(modifier.toLowerCase())];
-
- var tr = [String.prototype.toLowerCase, String.prototype.toUpperCase]['eEfFgG'.indexOf(modifier) % 2];
-
- var isSpecial = isNaN(_abs) || !isFinite(_abs);
-
- var _str = isSpecial ? _abs.toString().substr(0, 3) : op.call(_abs, precision);
-
- if (padChar === '0' && !isSpecial) {
- return _prefix + pad(tr.call(_str), minWidth - _prefix.length, padChar, leftJustify);
- }
-
- return pad(tr.call(_prefix + _str), minWidth, isSpecial ? ' ' : padChar, leftJustify);
- }
- case 'b':
- case 'o':
- case 'u':
- case 'x':
- case 'X':
- {
- var _number2 = +arg || 0;
- var intVal = Math.trunc(_number2) + (_number2 < 0 ? 0xFFFFFFFF + 1 : 0);
- var base = [2, 8, 10, 16, 16]['bouxX'.indexOf(modifier)];
- var _prefix2 = intVal && flags.includes('#') ? ['', '0', '', '0x', '0X']['bouxXX'.indexOf(modifier)] : '';
-
- if (padChar === '0' && _prefix2) {
- return _prefix2 + pad(pad(intVal.toString(base), precision, '0', false), minWidth - _prefix2.length, padChar, leftJustify);
- }
-
- return pad(_prefix2 + pad(intVal.toString(base), precision, '0', false), minWidth, padChar, leftJustify);
- }
- case 'p':
- case 'n':
- {
- throw Error('\'' + modifier + '\' modifier not supported');
- }
- case 's':
- {
- return pad(String(arg).substr(0, precision), minWidth, padChar, leftJustify);
- }
- case 'c':
- {
- // extension, if arg is string, take first char
- var chr = typeof arg === 'string' ? arg.charAt(0) : String.fromCharCode(+arg);
- return pad(chr, minWidth, padChar, leftJustify);
- }
- case 'a':
- case 'A':
- throw Error('\'' + modifier + '\' modifier not yet implemented');
- default:
- // for unknown modifiers, return the modifier char
- return modifier;
- }
- });
-};
-//# sourceMappingURL=sprintf.js.map \ No newline at end of file
diff --git a/node_modules/locutus/c/stdio/sprintf.js.map b/node_modules/locutus/c/stdio/sprintf.js.map
deleted file mode 100644
index 6a2ddbb..0000000
--- a/node_modules/locutus/c/stdio/sprintf.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["../../../src/c/stdio/sprintf.js"],"names":["pad","str","minLength","padChar","leftJustify","diff","length","padStr","repeat","Math","max","module","exports","sprintf","format","args","placeholderRegex","index","replace","match","param","flags","width","prec","modifier","includes","split","reduce","pc","c","positiveSign","minWidth","precision","Error","arg","undefined","isNaN","String","number","trunc","abs","prefix","toString","op","Number","prototype","toExponential","toFixed","toPrecision","indexOf","toLowerCase","tr","toUpperCase","isSpecial","isFinite","substr","call","intVal","base","chr","charAt","fromCharCode"],"mappings":"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","file":"sprintf.js","sourcesContent":["function pad (str, minLength, padChar, leftJustify) {\n const diff = minLength - str.length\n const padStr = padChar.repeat(Math.max(0, diff))\n\n return leftJustify ? str + padStr : padStr + str\n}\n\nmodule.exports = function sprintf (format, ...args) {\n // original by: Rafał Kukawski\n // example 1: sprintf('%+10.*d', 5, 1)\n // returns 1: ' +00001'\n const placeholderRegex = /%(?:(\\d+)\\$)?([-+#0 ]*)(\\*|\\d+)?(?:\\.(\\*|\\d*))?([\\s\\S])/g\n\n let index = 0\n\n return format.replace(placeholderRegex, function (match, param, flags, width, prec, modifier) {\n const leftJustify = flags.includes('-')\n\n // flag '0' is ignored when flag '-' is present\n const padChar = leftJustify ? ' '\n : flags.split('').reduce((pc, c) => [' ', '0'].includes(c) ? c : pc, ' ')\n\n const positiveSign = flags.includes('+') ? '+' : flags.includes(' ') ? ' ' : ''\n\n const minWidth = width === '*' ? args[index++] : +width || 0\n let precision = prec === '*' ? args[index++] : +prec\n\n if (param && !+param) {\n throw Error(`Param index must be greater than 0`)\n }\n\n if (param && +param > args.length) {\n throw Error(`Too few arguments`)\n }\n\n // compiling with default clang params, mixed positional and non-positional params\n // give only a warning\n const arg = param ? args[param - 1] : args[index++]\n\n if (precision === undefined || isNaN(precision)) {\n precision = 'eEfFgG'.includes(modifier) ? 6 : (modifier === 's' ? String(arg).length : undefined)\n }\n\n switch (modifier) {\n case '%':\n return '%'\n case 'd':\n case 'i': {\n const number = Math.trunc(+arg || 0)\n const abs = Math.abs(number)\n const prefix = number < 0 ? '-' : positiveSign\n\n const str = pad(abs.toString(), precision || 0, '0', false)\n\n if (padChar === '0') {\n return prefix + pad(str, minWidth - prefix.length, padChar, leftJustify)\n }\n\n return pad(prefix + str, minWidth, padChar, leftJustify)\n }\n case 'e':\n case 'E':\n case 'f':\n case 'F':\n case 'g':\n case 'G': {\n const number = +arg\n const abs = Math.abs(number)\n const prefix = number < 0 ? '-' : positiveSign\n\n const op = [\n Number.prototype.toExponential,\n Number.prototype.toFixed,\n Number.prototype.toPrecision\n ]['efg'.indexOf(modifier.toLowerCase())]\n\n const tr = [\n String.prototype.toLowerCase,\n String.prototype.toUpperCase\n ]['eEfFgG'.indexOf(modifier) % 2]\n\n const isSpecial = isNaN(abs) || !isFinite(abs)\n\n let str = isSpecial ? abs.toString().substr(0, 3) : op.call(abs, precision)\n\n if (padChar === '0' && !isSpecial) {\n return prefix + pad(tr.call(str), minWidth - prefix.length, padChar, leftJustify)\n }\n\n return pad(tr.call(prefix + str), minWidth, isSpecial ? ' ' : padChar, leftJustify)\n }\n case 'b':\n case 'o':\n case 'u':\n case 'x':\n case 'X': {\n const number = +arg || 0\n const intVal = Math.trunc(number) + (number < 0 ? 0xFFFFFFFF + 1 : 0)\n const base = [2, 8, 10, 16, 16]['bouxX'.indexOf(modifier)]\n const prefix = intVal && flags.includes('#') ? ['', '0', '', '0x', '0X']['bouxXX'.indexOf(modifier)] : ''\n\n if (padChar === '0' && prefix) {\n return prefix + pad(pad(intVal.toString(base), precision, '0', false), minWidth - prefix.length, padChar, leftJustify)\n }\n\n return pad(prefix + pad(intVal.toString(base), precision, '0', false), minWidth, padChar, leftJustify)\n }\n case 'p':\n case 'n': {\n throw Error(`'${modifier}' modifier not supported`)\n }\n case 's': {\n return pad(String(arg).substr(0, precision), minWidth, padChar, leftJustify)\n }\n case 'c': {\n // extension, if arg is string, take first char\n const chr = typeof arg === 'string' ? arg.charAt(0) : String.fromCharCode(+arg)\n return pad(chr, minWidth, padChar, leftJustify)\n }\n case 'a':\n case 'A':\n throw Error(`'${modifier}' modifier not yet implemented`)\n default:\n // for unknown modifiers, return the modifier char\n return modifier\n }\n })\n}\n"]} \ No newline at end of file