Skip to content

Instantly share code, notes, and snippets.

@skanehira
Last active March 17, 2020 04:33
Show Gist options
  • Save skanehira/ad852a755a9ef10efbd623db107ade97 to your computer and use it in GitHub Desktop.
Save skanehira/ad852a755a9ef10efbd623db107ade97 to your computer and use it in GitHub Desktop.
document.getElementById('gorilla').addEventListener("paste", e => {
e.clipboardData.files[0].arrayBuffer().then(b => {
fs.writeFile(path.join(__dirname, "gorilla.png"), new Buffer(b), err => {
if (err) {
console.log(err)
} else {
console.log("ウホウホ")
}
})
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment