@labnex/cli
Version:
CLI for Labnex, an AI-Powered Testing Automation Platform
11 lines • 323 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getInputType = getInputType;
function getInputType(pattern) {
const match = pattern.exec(pattern.toString());
if (match && match[1]) {
return match[1].trim();
}
return '';
}
//# sourceMappingURL=getInputType.js.map