- 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
8 lines
245 B
JavaScript
8 lines
245 B
JavaScript
module.exports = function(data, options) {
|
|
return typeof data === "string"
|
|
? new Buffer(data, typeof options === "string" ? options
|
|
: options && options.encoding !== null ? options.encoding
|
|
: "utf8")
|
|
: data;
|
|
};
|