Plato on Github
Report Home
node_modules/xml2js/lib/bom.js
Maintainability
77.50
Lines of code
14
Difficulty
6.23
Estimated Errors
0.05
Function weight
By Complexity
By SLOC
// 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);