UNPKG

react-native-photos-framework

Version:

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

9 lines (6 loc) 239 B
const fs = require('fs-extra'); exports.readFile = (file) => () => fs.readFileSync(file, 'utf8'); exports.writeFile = (file, content) => content ? fs.writeFileSync(file, content, 'utf8') : (c) => fs.writeFileSync(file, c, 'utf8');