Source

validators/isRepoBranchName.js

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var isURLSafeStr_1 = require("./isURLSafeStr");
  4. var REGEX = new RegExp("^(".concat(isURLSafeStr_1.URL_SAFE_REGEX_STR, "/)?").concat(isURLSafeStr_1.URL_SAFE_REGEX_STR, "$"), 'i');
  5. /**
  6. * Whether it is a branch name of a repository
  7. *
  8. * @param value
  9. * @category validators
  10. * @module isRepoBranchName
  11. */
  12. var isRepoBranchName = function (value) { return REGEX.test(value); };
  13. exports.default = isRepoBranchName;