D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
washeet.softurecs.com
/
node_modules
/
github-from-package
/
Filename :
index.js
back
Copy
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$/, ''); } }