This commit is contained in:
8
node_modules/licia/stripBom.js
generated
vendored
Normal file
8
node_modules/licia/stripBom.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
exports = function(str) {
|
||||
if (str.charCodeAt(0) === 0xfeff) {
|
||||
return str.slice(1);
|
||||
}
|
||||
return str;
|
||||
};
|
||||
|
||||
module.exports = exports;
|
||||
Reference in New Issue
Block a user