This commit is contained in:
2024-03-22 03:47:51 +05:30
parent 8bcf3d211e
commit 89819f6fe2
28440 changed files with 3211033 additions and 2 deletions

19
node_modules/@pnpm/npm-conf/lib/envKeyToSetting.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
module.exports = function (x) {
const colonIndex = x.indexOf(':');
if (colonIndex === -1) {
return normalize(x);
}
const firstPart = x.substr(0, colonIndex);
const secondPart = x.substr(colonIndex + 1);
return `${normalize(firstPart)}:${normalize(secondPart)}`;
}
function normalize (s) {
s = s.toLowerCase();
if (s === '_authtoken') return '_authToken';
let r = s[0];
for (let i = 1; i < s.length; i++) {
r += s[i] === '_' ? '-' : s[i];
}
return r;
}