dotfiles/.vscode/extensions/saviorisdead.RustyCode-0.18.0/node_modules/underscore.string/helper/makeString.js

8 lines
161 B
JavaScript
Raw Normal View History

2016-09-11 09:29:13 +01:00
/**
* Ensure some object is a coerced to a string
**/
module.exports = function makeString(object) {
if (object == null) return '';
return '' + object;
};