Current File : //lib/node_modules/bower/lib/node_modules/mout/lang/toString.js
/**
* Typecast a value to a String, using an empty string value for null or
* undefined.
*/
function toString(val){
return val == null ? '' : val.toString();
}
module.exports = toString;