Files
30-seconds-of-code/node_modules/underscore.string/helper/makeString.js
2019-08-20 15:52:05 +02:00

8 lines
161 B
JavaScript

/**
* Ensure some object is a coerced to a string
**/
module.exports = function makeString(object) {
if (object == null) return '';
return '' + object;
};