module: strip byte order marker when loading *.js and *.json files
authorBen Noordhuis <info@bnoordhuis.nl>
Tue, 2 Aug 2011 21:18:18 +0000 (23:18 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Thu, 4 Aug 2011 14:52:55 +0000 (16:52 +0200)
commitac722bbed6ea846991904ed205a6dc5ece4748c9
treee241bad9cb5965b1a45eb10f8af76884d2acdd2d
parentf9cfd709460e04c8417e7784e6e3b264d3ff6c69
module: strip byte order marker when loading *.js and *.json files

BOMs make V8 raise a 'SyntaxError: Unexpected token ILLEGAL' exception.

Fixes #1440.
lib/module.js
test/fixtures/utf8-bom.js [new file with mode: 0644]
test/fixtures/utf8-bom.json [new file with mode: 0644]
test/simple/test-module-loading.js