makeString.js 161 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 /** * Ensure some object is a coerced to a string **/ module.exports = function makeString(object) { if (object == null) return ''; return '' + object; };