node-pluginsmanager
Version:
16 lines (15 loc) • 371 B
JavaScript
;
// module
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = stdToString;
function stdToString(msg) {
if ("object" !== typeof msg) {
return String(msg);
}
else if (msg instanceof Buffer) {
return msg.toString("utf8");
}
else {
return msg.message ? msg.message : String(msg);
}
}