Files
med-notes/.pnpm-store/v10/files/c8/6732090ddadfa4aa99b83e2da4cee4722e1ce92426c26a88cfd2860d7b3dfef039b92dd28ddd93aa724824050eb6129f4ab7ac45657dabfe4b46dbcb118d7b
2025-05-09 05:30:08 +02:00

18 lines
406 B
Plaintext

module.exports = function (pkg) {
var m;
if (m = match(JSON.stringify(pkg.repository))) {
return m;
}
else if (m = match(JSON.stringify(pkg))) {
return m;
}
return undefined;
};
function match (str) {
var m = /\bgithub.com[:\/]([^\/"]+)\/([^\/"]+)/.exec(str);
if (m) {
return 'https://github.com/' + m[1] + '/' + m[2].replace(/\.git$/, '');
}
}