UNPKG

react-native-photos-framework

Version:

Use Apples Photos Framework with react-native to fetch media from CameraRoll and iCloud

11 lines (9 loc) 277 B
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')); };