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