```js const a = Joi.string().valid('a').empty(''); const b = Joi.string().insensitive().empty(' '); const ab = a.concat(b); // Should treats both '' and ' ' as empty ```