mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
9 lines
279 B
JavaScript
9 lines
279 B
JavaScript
|
const fs = require('fs');
|
||
|
const makeUsingPatch = require('./patches/makeUsingPatch');
|
||
|
|
||
|
module.exports = function isInstalled(config, dependencyConfig) {
|
||
|
return fs
|
||
|
.readFileSync(config.mainPage)
|
||
|
.indexOf(makeUsingPatch(dependencyConfig.packageUsingPath).patch) > -1;
|
||
|
};
|