mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
|
/*global module*/
|
||
|
var Buffer = require('buffer').Buffer;
|
||
|
|
||
|
module.exports = function toString(obj) {
|
||
|
if (typeof obj === 'string')
|
||
|
return obj;
|
||
|
if (typeof obj === 'number' || Buffer.isBuffer(obj))
|
||
|
return obj.toString();
|
||
|
return JSON.stringify(obj);
|
||
|
};
|