Skip to content

Instantly share code, notes, and snippets.

@emkay
Created November 3, 2013 04:14
Show Gist options
  • Select an option

  • Save emkay/7286656 to your computer and use it in GitHub Desktop.

Select an option

Save emkay/7286656 to your computer and use it in GitHub Desktop.
nesly split example
var neslySplit = require('nesly-split');
var fs = require('fs');
var s = fs.createWriteStream('mario.chr');
neslySplit('smb.nes', function (err, data) {
if (!err) {
s.write(data.chr);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment