Valider FirstName en JavaScript

const nameFormat = /^[ a-zA-Z\-/']+$/;
return nameFormat.test(value);
Brave Bat