aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/jws/lib/tostring.js
blob: f5a49a36548b1e299042c9e3d1cdd60c71d8ec0c (plain) (blame)
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);
};