mirror of
https://github.com/status-im/react-native.git
synced 2025-01-17 04:50:59 +00:00
12 lines
280 B
JavaScript
12 lines
280 B
JavaScript
|
const fs = require('fs');
|
||
|
|
||
|
module.exports = function applyPatch(file, patch, flip = false) {
|
||
|
|
||
|
fs.writeFileSync(file, fs
|
||
|
.readFileSync(file, 'utf8')
|
||
|
.replace(patch.pattern, match => {
|
||
|
return flip ? `${patch.patch}${match}` : `${match}${patch.patch}`
|
||
|
})
|
||
|
);
|
||
|
};
|