blob: 3b279abd327f7cff402082770a3bceae312aeee1 [file] [log] [blame]
/**
* Ensure some object is a coerced to a string
**/
module.exports = function makeString(object) {
if (object == null) return '';
return '' + object;
};