aboutsummaryrefslogtreecommitdiff
path: root/node_modules/xml2js/lib/bom.js
blob: d7f226edca8bd5bf1ca4b692b7094a785efc44e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Generated by CoffeeScript 1.7.1
(function() {
  var xml2js;

  xml2js = require('../lib/xml2js');

  exports.stripBOM = function(str) {
    if (str[0] === '\uFEFF') {
      return str.substring(1);
    } else {
      return str;
    }
  };

}).call(this);