github-pages-deploy-action/node_modules/strip-bom/index.js

15 lines
317 B
JavaScript
Raw Normal View History

2020-01-28 13:08:03 +08:00
'use strict';
2020-03-07 11:45:40 +08:00
module.exports = x => {
if (typeof x !== 'string') {
throw new TypeError('Expected a string, got ' + typeof x);
2020-01-28 13:08:03 +08:00
}
// Catches EFBBBF (UTF-8 BOM) because the buffer-to-string
// conversion translates it to FEFF (UTF-16 BOM)
2020-03-07 11:45:40 +08:00
if (x.charCodeAt(0) === 0xFEFF) {
return x.slice(1);
2020-01-28 13:08:03 +08:00
}
2020-03-07 11:45:40 +08:00
return x;
2020-01-28 13:08:03 +08:00
};