Skip to content
This repository has been archived by the owner on Dec 20, 2017. It is now read-only.

Commit

Permalink
remove <feff>
Browse files Browse the repository at this point in the history
  • Loading branch information
jgallen23 committed Aug 2, 2012
1 parent cf5387e commit 1324375
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/plugins/read.js
Expand Up @@ -20,6 +20,9 @@ var read = function(files, callback) {
assetType = type;

fs.readFile(file, 'utf8', function(err, source) {
if (source.charCodeAt(0) == 65279) {
source = source.substring(1);
}
next({
filename: file,
source: source
Expand Down

0 comments on commit 1324375

Please sign in to comment.