@strapi/generators
Version:
Interactive API generator.
11 lines (9 loc) • 347 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";
});
export { validateFileNameInput as default };
//# sourceMappingURL=validate-file-name-input.mjs.map