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

16 lines
348 B
JavaScript
Raw Normal View History

2020-01-28 13:08:03 +08:00
'use strict';
2020-03-31 20:57:48 +08:00
module.exports = string => {
if (typeof string !== 'string') {
throw new TypeError(`Expected a string, got ${typeof string}`);
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-31 20:57:48 +08:00
if (string.charCodeAt(0) === 0xFEFF) {
return string.slice(1);
2020-01-28 13:08:03 +08:00
}
2020-03-31 20:57:48 +08:00
return string;
2020-01-28 13:08:03 +08:00
};