8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
|
function toString(obj) {
|
||
|
if (typeof obj === 'string') {
|
||
|
return obj
|
||
|
}
|
||
|
return obj.toString()
|
||
|
}
|
||
|
|
||
|
export {toString};
|