GITLAB

Nattapon Wongpaet / Hospital

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • hospital
  • node_modules
  • xml2js
  • lib
  • bom.js
  • 33ead877   first code Browse Code ยป
    Nattapon Wongpaet
    2018-10-12 18:33:32 +0700  
bom.js 223 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12
// 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);