mirror of
https://github.com/status-im/react-native.git
synced 2025-02-19 12:57:00 +00:00
11 lines
277 B
JavaScript
11 lines
277 B
JavaScript
|
const fs = require('fs');
|
||
|
const xml = require('xmldoc');
|
||
|
|
||
|
/**
|
||
|
* @param {String} manifestPath
|
||
|
* @return {XMLDocument} Parsed manifest's content
|
||
|
*/
|
||
|
module.exports = function readManifest(manifestPath) {
|
||
|
return new xml.XmlDocument(fs.readFileSync(manifestPath, 'utf8'));
|
||
|
};
|