Home
last modified time | relevance | path

Searched refs:rawRef (Results 1 – 2 of 2) sorted by relevance

/third_party/node/deps/npm/node_modules/@npmcli/git/lib/
Dlines-to-revs.js89 const rawRef = split[1].trim() constant
90 const type = refType(rawRef)
101 const ref = rawRef.slice('refs/tags/'.length)
102 return { sha, ref, rawRef, type }
106 const ref = rawRef.slice('refs/heads/'.length)
107 return { sha, ref, rawRef, type }
113 const ref = rawRef.slice('refs/'.length).replace(/\/head$/, '')
114 return { sha, ref, rawRef, type }
119 return { sha, ref, rawRef, type }
123 return { sha, ref: rawRef, rawRef, type }
[all …]
Dclone.js91 const fetchOrigin = ['fetch', 'origin', revDoc.rawRef]