Skip to content

Instantly share code, notes, and snippets.

@thejefflarson
Created July 9, 2018 19:25
Show Gist options
  • Save thejefflarson/ede4f899d0eeed64fb56f74bed47f679 to your computer and use it in GitHub Desktop.
Save thejefflarson/ede4f899d0eeed64fb56f74bed47f679 to your computer and use it in GitHub Desktop.
Clam API
createEngine((err, engine) => {
if (err) throw err;
engine.scan(buffer, (err, result) => {
if (err) throw err;
console.log(result);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment