badge-urls
Version:
Helper functions to generate URLs for all badges / shields from shields.io
10 lines (9 loc) • 702 B
JavaScript
;
// This file was auto-generated. Do not modify it by hand and instead modify the scraper or code generator files.
Object.defineProperty(exports, "__esModule", { value: true });
exports.url = exports.label = void 0;
var options_1 = require("../../options");
/** Label for Scrutinizer build (GitHub/Bitbucket) (/scrutinizer/build/:vcs/:user/:repo/:branch?) */
exports.label = "Scrutinizer build (GitHub/Bitbucket)";
/** URL for Scrutinizer build (GitHub/Bitbucket) (/scrutinizer/build/:vcs/:user/:repo/:branch?) */
exports.url = function (vcs, user, repo, branch, options) { return options_1.urlWithOptions("/scrutinizer/build/" + vcs + "/" + user + "/" + repo + "/" + branch, options); };