loulijun2021
2024-05-08 15cbc2f370b61e4e0cd472c8030fb8cb6d89b82a
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);
};