0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

refactor: replace deprecated String.prototype.substr() (#3091)

This commit is contained in:
CommanderRoot 2022-03-25 23:27:31 +01:00 committed by GitHub
parent a5019d89f3
commit a2c3fa9ea7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions

View file

@ -3,6 +3,6 @@ import semver from 'semver';
export const MIN_NODE_VERSION = '14.0.0';
export function isVersionValid(processVersion) {
const version = processVersion.substr(1);
const version = processVersion.slice(1);
return semver.satisfies(version, `>=${MIN_NODE_VERSION}`);
}

View file

@ -38,7 +38,7 @@ export function getWebProtocol(headerProtocol: string | void, protocol: string):
if (typeof headerProtocol === 'string' && headerProtocol !== '') {
debug('header protocol: %o', protocol);
const commaIndex = headerProtocol.indexOf(',');
returnProtocol = commaIndex > 0 ? headerProtocol.substr(0, commaIndex) : headerProtocol;
returnProtocol = commaIndex > 0 ? headerProtocol.slice(0, commaIndex) : headerProtocol;
} else {
debug('req protocol: %o', headerProtocol);
returnProtocol = protocol;

View file

@ -26,7 +26,7 @@ export function fillInMsgTemplate(msg, templateOptions: ObjectTemplate, colors):
let str = templateOptions;
let isError;
if (name[0] === ERROR_FLAG) {
name = name.substr(1);
name = name.slice(1);
isError = true;
}

View file

@ -61,14 +61,14 @@ export async function verifyPassword(passwd: string, hash: string): Promise<bool
bcrypt.compare(passwd, hash, (error, result) => (error ? reject(error) : resolve(result)))
);
} else if (hash.indexOf('{PLAIN}') === 0) {
return passwd === hash.substr(7);
return passwd === hash.slice(7);
} else if (hash.indexOf('{SHA}') === 0) {
return (
crypto
.createHash('sha1')
// https://nodejs.org/api/crypto.html#crypto_hash_update_data_inputencoding
.update(passwd, 'utf8')
.digest('base64') === hash.substr(5)
.digest('base64') === hash.slice(5)
);
}
// for backwards compatibility, first check md5 then check crypt3

View file

@ -35,7 +35,7 @@ export const fSError = function (message: string, code = 409): VerdaccioError {
};
const tempFile = function (str): string {
return `${str}.tmp${String(Math.random()).substr(2)}`;
return `${str}.tmp${String(Math.random()).slice(2)}`;
};
const renameTmp = function (src, dst, _cb): void {

View file

@ -158,7 +158,7 @@ export function pad(str, max): string {
* @returns {String}
*/
export function mask(str: string, charNum = 3): string {
return `${str.substr(0, charNum)}...${str.substr(-charNum)}`;
return `${str.slice(0, charNum)}...${str.slice(-charNum)}`;
}
// @deprecated