/home2/dakshskx/nodejs/lib/node_modules/npm/node_modules/@npmcli/git/lib
NameSizeModeActions
clone.js48940644editdlrm
errors.js6000644editdlrm
find.js3000644editdlrm
index.js2420644editdlrm
is-clean.js2220644editdlrm
is.js2710644editdlrm
lines-to-revs.js40610644editdlrm
make-error.js8610644editdlrm
opts.js3710644editdlrm
revs.js6380644editdlrm
spawn.js12970644editdlrm
utils.js1090644editdlrm
which.js3390644editdlrm
Edit: /home2/dakshskx/nodejs/lib/node_modules/npm/node_modules/@npmcli/git/lib/errors.js (600B)
const maxRetry = 3 class GitError extends Error { shouldRetry () { return false } } class GitConnectionError extends GitError { constructor (message) { super('A git connection error occurred') } shouldRetry (number) { return number < maxRetry } } class GitPathspecError extends GitError { constructor (message) { super('The git reference could not be found') } } class GitUnknownError extends GitError { constructor (message) { super('An unknown git error occurred') } } module.exports = { GitConnectionError, GitPathspecError, GitUnknownError, }