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