HTMLify
tostring.js
Views: 6 | Author: cody
1 2 3 4 5 6 7 8 9 10 | /*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); }; |