You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
"use strict";
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC 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
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.readJsonFile = exports.readFile = void 0;
|
|
const core_1 = require("@angular-devkit/core");
|
|
const fs_1 = require("fs");
|
|
/**
|
|
* Read a file and returns its content. This supports different file encoding.
|
|
*/
|
|
function readFile(fileName) {
|
|
if (!fs_1.existsSync(fileName)) {
|
|
throw new core_1.FileDoesNotExistException(fileName);
|
|
}
|
|
const buffer = fs_1.readFileSync(fileName);
|
|
let len = buffer.length;
|
|
if (len >= 2 && buffer[0] === 0xfe && buffer[1] === 0xff) {
|
|
// Big endian UTF-16 byte order mark detected. Since big endian is not supported by node.js,
|
|
// flip all byte pairs and treat as little endian.
|
|
len &= ~1;
|
|
for (let i = 0; i < len; i += 2) {
|
|
const temp = buffer[i];
|
|
buffer[i] = buffer[i + 1];
|
|
buffer[i + 1] = temp;
|
|
}
|
|
return buffer.toString('utf16le', 2);
|
|
}
|
|
if (len >= 2 && buffer[0] === 0xff && buffer[1] === 0xfe) {
|
|
// Little endian UTF-16 byte order mark detected
|
|
return buffer.toString('utf16le', 2);
|
|
}
|
|
if (len >= 3 && buffer[0] === 0xef && buffer[1] === 0xbb && buffer[2] === 0xbf) {
|
|
// UTF-8 byte order mark detected
|
|
return buffer.toString('utf8', 3);
|
|
}
|
|
// Default is UTF-8 with no byte order mark
|
|
return buffer.toString('utf8');
|
|
}
|
|
exports.readFile = readFile;
|
|
function readJsonFile(path) {
|
|
return core_1.parseJson(readFile(path), core_1.JsonParseMode.Loose);
|
|
}
|
|
exports.readJsonFile = readJsonFile;
|