aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/bcryptjs/src/bcrypt/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'backend/node_modules/bcryptjs/src/bcrypt/util.js')
-rw-r--r--backend/node_modules/bcryptjs/src/bcrypt/util.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/backend/node_modules/bcryptjs/src/bcrypt/util.js b/backend/node_modules/bcryptjs/src/bcrypt/util.js
deleted file mode 100644
index 52fe555..0000000
--- a/backend/node_modules/bcryptjs/src/bcrypt/util.js
+++ /dev/null
@@ -1,33 +0,0 @@
-/**
- * Continues with the callback on the next tick.
- * @function
- * @param {function(...[*])} callback Callback to execute
- * @inner
- */
-var nextTick = typeof process !== 'undefined' && process && typeof process.nextTick === 'function'
- ? (typeof setImmediate === 'function' ? setImmediate : process.nextTick)
- : setTimeout;
-
-/**
- * Converts a JavaScript string to UTF8 bytes.
- * @param {string} str String
- * @returns {!Array.<number>} UTF8 bytes
- * @inner
- */
-function stringToBytes(str) {
- var out = [],
- i = 0;
- utfx.encodeUTF16toUTF8(function() {
- if (i >= str.length) return null;
- return str.charCodeAt(i++);
- }, function(b) {
- out.push(b);
- });
- return out;
-}
-
-//? include("util/base64.js");
-
-//? include("../../node_modules/utfx/dist/utfx-embeddable.js");
-
-Date.now = Date.now || function() { return +new Date; };