10 lines
359 B
JavaScript
10 lines
359 B
JavaScript
|
exports.copy = { command: "pbcopy", args: [] };
|
||
|
exports.paste = { command: "pbpaste", args: [] };
|
||
|
exports.paste.full_command = exports.paste.command;
|
||
|
exports.encode = function(str) { return new Buffer(str, "utf8"); };
|
||
|
exports.decode = function(chunks) {
|
||
|
if(!Array.isArray(chunks)) { chunks = [ chunks ]; }
|
||
|
|
||
|
return Buffer.concat(chunks).toString("utf8");
|
||
|
};
|