@graphteon/juricode
Version:
We are forging the future with lines of digital steel
9 lines • 345 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.parseGithubUrl = void 0;
const parseGithubUrl = (url) => {
const parts = url.replace("https://github.com/", "").split("/");
return parts.length === 2 ? parts : [];
};
exports.parseGithubUrl = parseGithubUrl;
//# sourceMappingURL=parse-github-url.js.map