mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 04:24:15 +00:00
11 lines
353 B
JavaScript
11 lines
353 B
JavaScript
|
/**
|
||
|
* Given an array of libraries already imported and packageName that will be
|
||
|
* added, returns true or false depending on whether the library is already linked
|
||
|
* or not
|
||
|
*/
|
||
|
module.exports = function hasLibraryImported(libraries, packageName) {
|
||
|
return libraries.children
|
||
|
.filter(library => library.comment === packageName)
|
||
|
.length > 0;
|
||
|
};
|