mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 17:51:35 +00:00
10 lines
167 B
JavaScript
10 lines
167 B
JavaScript
module.exports = getUrl
|
|
|
|
function getUrl (r) {
|
|
if (!r) return null
|
|
if (/^[\w-]+\/[\w\.-]+$/.test(r))
|
|
return "https://github.com/" + r
|
|
else
|
|
return null
|
|
}
|