1module.exports = { 2 "name": prompt("name", function (data) { 3 if (data === 'cool') return data 4 var er = new Error('not cool') 5 er.notValid = true 6 return er 7 }) 8} 9