@strapi/generators
Version:
Interactive API generator.
13 lines (10 loc) • 345 B
JavaScript
;
var validateAttributeInput = ((input)=>{
const regex = /^[A-Za-z-|_]+$/g;
if (!input) {
return 'You must provide an input';
}
return regex.test(input) || "Please use only letters, '-', '_', and no spaces";
});
module.exports = validateAttributeInput;
//# sourceMappingURL=validate-attribute-input.js.map