UNPKG

react-native-photos-framework

Version:

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

9 lines (7 loc) 210 B
const fs = require('fs'); module.exports = function applyPatch(file, patch) { fs.writeFileSync(file, fs .readFileSync(file, 'utf8') .replace(patch.pattern, match => `${match}${patch.patch}`) ); };