uni-ticket-system/node_modules/licia/stripBom.js

9 lines
147 B
JavaScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
exports = function(str) {
if (str.charCodeAt(0) === 0xfeff) {
return str.slice(1);
}
return str;
};
module.exports = exports;