artdaq_node_server  v1_00_07
 All Classes Namespaces Files Variables Pages
bom.js
1 // Generated by CoffeeScript 1.10.0
2 (function() {
3  "use strict";
4  exports.stripBOM = function(str) {
5  if (str[0] === '\uFEFF') {
6  return str.substring(1);
7  } else {
8  return str;
9  }
10  };
11 
12 }).call(this);