mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 23:15:56 +08:00
6 lines
158 B
TypeScript
6 lines
158 B
TypeScript
// Strip BOM from file data.
|
|
// https://stackoverflow.com/questions/24356713
|
|
export function stripBom(data: string) {
|
|
return data.replace(/^\uFEFF/, '');
|
|
}
|