@angular-devkit/build-angular
Version:
Angular Webpack Build Facade
19 lines (18 loc) • 563 B
JavaScript
/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
// tslint:disable
// TODO: cleanup this file, it's copied as is from Angular CLI.
Object.defineProperty(exports, "__esModule", { value: true });
exports.stripBom = void 0;
// Strip BOM from file data.
// https://stackoverflow.com/questions/24356713
function stripBom(data) {
return data.replace(/^\uFEFF/, '');
}
exports.stripBom = stripBom;
;