Version 1
[yaffs-website] / node_modules / underscore.string / helper / makeString.js
1 /**
2  * Ensure some object is a coerced to a string
3  **/
4 module.exports = function makeString(object) {
5   if (object == null) return '';
6   return '' + object;
7 };