- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
11 lines
262 B
JavaScript
11 lines
262 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);
|
|
};
|