blob: 7b8fb27b11817be1ee104b6f73faf7131d9037e0 [file] [log] [blame]
// Generated by CoffeeScript 1.12.7
(function() {
"use strict";
exports.stripBOM = function(str) {
if (str[0] === '\uFEFF') {
return str.substring(1);
} else {
return str;
}
};
}).call(this);