/
Alcatraz
/
Wagomon
Обзор
Документация
Войти
/
Alcatraz
/
Wagomon
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/bcryptjs/src/bcrypt/util.js
33 строки
874 B
saitgalineu
fix
27 фев 2026, 12:39
27 фев 2026, 12:39
a5092f1
Код
Авторство
О чём код?
/** * 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; };