mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
9 lines
178 B
JavaScript
9 lines
178 B
JavaScript
|
const fs = require('fs');
|
||
|
|
||
|
module.exports = function revokePatch(file, patch) {
|
||
|
fs.writeFileSync(file, fs
|
||
|
.readFileSync(file, 'utf8')
|
||
|
.replace(patch.patch, '')
|
||
|
);
|
||
|
};
|