Files
github-action-setup-xmake/dist/interfaces.js
T
Opportunity 2feaa3232f match pr
2020-05-24 00:59:25 +08:00

10 lines
261 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
function Sha(sha) {
sha = sha.trim().toLowerCase();
if (!/^[a-f0-9]{40}$/g.test(sha))
throw new Error(`Invalid sha value ${sha}`);
return sha;
}
exports.Sha = Sha;