diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/source-map/lib/base64.js')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/source-map/lib/base64.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/source-map/lib/base64.js b/sandbox/testAppNevena/Front/node_modules/source-map/lib/base64.js new file mode 100644 index 00000000..b9ca3199 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/source-map/lib/base64.js @@ -0,0 +1,18 @@ +/* -*- Mode: js; js-indent-level: 2; -*- */ +/* + * Copyright 2011 Mozilla Foundation and contributors + * Licensed under the New BSD license. See LICENSE or: + * http://opensource.org/licenses/BSD-3-Clause + */ + +const intToCharMap = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""); + +/** + * Encode an integer in the range of 0 to 63 to a single base 64 digit. + */ +exports.encode = function(number) { + if (0 <= number && number < intToCharMap.length) { + return intToCharMap[number]; + } + throw new TypeError("Must be between 0 and 63: " + number); +}; |