2017-10-25 10:32:57 -07:00

6 lines
158 B
TypeScript

// Strip BOM from file data.
// https://stackoverflow.com/questions/24356713
export function stripBom(data: string) {
return data.replace(/^\uFEFF/, '');
}