DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
161 Bytes
/**
* Ensure some object is a coerced to a string
**/
module.exports = function makeString(object) {
if (object == null) return '';
return '' + object;
};