8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
function defaultFormatter(value) {
|
|
if (value === null || value === undefined) return '';
|
|
|
|
return `${value}`;
|
|
}
|
|
|
|
module.exports = defaultFormatter;
|