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:
parent
a5019d89f3
commit
a2c3fa9ea7
6 changed files with 7 additions and 7 deletions
|
@ -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}`);
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue