UNPKG

react-native

Version:

A framework for building native apps using React

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}`) ); };