EASYAIuniappNewUI/node_modules/licia/stripBom.js
2025-02-08 18:50:38 +08:00

9 lines
147 B
JavaScript

exports = function(str) {
if (str.charCodeAt(0) === 0xfeff) {
return str.slice(1);
}
return str;
};
module.exports = exports;