const proc = require('child_process').spawn('pbcopy');
const iconv = require('iconv-lite');
const name = '吉星高照';
function iconvDecode(str = '') {
return iconv.decode(Buffer.from(str, 'binary'), 'cp936');
}
function pbcopy(data) {
proc.stdin.write(iconvDecode(data));
proc.stdin.end();
return data;
}
pbcopy(name);
The expected output from the clipboard (on macOS) should be 吉星高照
but instead it is 豨
.
Turns out I need to set the environment variable
LC_CTYPE
for pbcopy: