├── .babelrc ├── .eslintrc ├── .flowconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── Sample ├── .babelrc ├── .gitignore ├── .snyk ├── .watchmanconfig ├── App.js ├── SegmentedView.js ├── app.json ├── assets │ ├── icon.png │ └── splash.png ├── package-lock.json ├── package.json └── screenshots │ ├── screenshot_android.png │ └── screenshot_ios.png ├── index.d.ts ├── package-lock.json ├── package.json └── src ├── SegmentedControlTab.js ├── TabOption.js └── __tests__ ├── SegmentedControlTab.js ├── TabOption.js └── __snapshots__ ├── SegmentedControlTab.js.snap └── TabOption.js.snap /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "react-native", 4 | "flow" 5 | ] 6 | } -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "babel-eslint", 3 | "extends": "airbnb", 4 | "plugins": [ 5 | "react", 6 | "flowtype", 7 | "jsx-a11y", 8 | "import", 9 | "babel" 10 | ], 11 | "rules": { 12 | // Best Practices 13 | "accessor-pairs": 2, 14 | "block-scoped-var": 2, 15 | "complexity": [ 16 | "error", 17 | 10 18 | ], 19 | "consistent-return": 2, 20 | "curly": 2, 21 | "default-case": 2, 22 | "dot-location": [ 23 | 2, 24 | "property" 25 | ], 26 | "dot-notation": 2, 27 | "eqeqeq": [ 28 | 2, 29 | "allow-null" 30 | ], 31 | "guard-for-in": 2, 32 | "no-alert": 2, 33 | "no-caller": 2, 34 | "no-case-declarations": 2, 35 | "no-div-regex": 2, 36 | "no-else-return": 2, 37 | "no-empty-pattern": 2, 38 | "no-eq-null": 2, 39 | "no-eval": 2, 40 | "no-extend-native": 2, 41 | "no-extra-bind": 2, 42 | "no-fallthrough": 2, 43 | "no-floating-decimal": 2, 44 | "no-implicit-coercion": 2, 45 | "no-implied-eval": 2, 46 | "no-invalid-this": 0, 47 | "no-iterator": 2, 48 | "no-labels": 2, 49 | "no-lone-blocks": 2, 50 | "no-loop-func": 2, 51 | "no-magic-numbers": 0, 52 | "no-multi-str": 2, 53 | "no-native-reassign": 2, 54 | "no-new-func": 2, 55 | "no-new-wrappers": 2, 56 | "no-new": 2, 57 | "no-octal-escape": 2, 58 | "no-octal": 2, 59 | "no-param-reassign": 2, 60 | "no-process-env": 0, 61 | "no-proto": 2, 62 | "no-redeclare": 2, 63 | "no-return-assign": 2, 64 | "no-script-url": 2, 65 | "no-self-compare": 2, 66 | "no-sequences": 2, 67 | "no-throw-literal": 2, 68 | "no-unsafe-negation": 2, 69 | "no-unused-expressions": 2, 70 | "no-useless-call": 2, 71 | "no-useless-concat": 2, 72 | "no-useless-rename": 0, 73 | "no-void": 2, 74 | "no-warning-comments": 1, 75 | "no-with": 2, 76 | "prefer-destructuring": [ 77 | 2, 78 | { 79 | "array": false, 80 | "object": true 81 | }, 82 | { 83 | "enforceForRenamedProperties": false 84 | } 85 | ], 86 | "radix": 2, 87 | "semi-spacing": 2, 88 | "vars-on-top": 0, 89 | "wrap-iife": 2, 90 | "yoda": 2, 91 | // Flow 92 | "flowtype/use-flow-type": 2, 93 | "flowtype/define-flow-type": 2, 94 | "flowtype/space-after-type-colon": [ 95 | 2, 96 | "always" 97 | ], 98 | "flowtype/space-before-type-colon": [ 99 | 2, 100 | "never" 101 | ], 102 | "flowtype/require-valid-file-annotation": [ 103 | 2, 104 | "always", 105 | { 106 | "annotationStyle": "block" 107 | } 108 | ], 109 | // ES6 110 | "arrow-body-style": 0, 111 | "arrow-parens": 0, 112 | "arrow-spacing": 2, 113 | "constructor-super": 2, 114 | "generator-star-spacing": [ 115 | 2, 116 | { 117 | "before": true, 118 | "after": true 119 | } 120 | ], 121 | "no-class-assign": 2, 122 | "no-confusing-arrow": 2, 123 | "no-const-assign": 2, 124 | "no-dupe-class-members": 2, 125 | "no-this-before-super": 2, 126 | "no-var": 2, 127 | "object-shorthand": 2, 128 | "prefer-arrow-callback": 2, 129 | "prefer-const": 2, 130 | "prefer-reflect": 0, 131 | "prefer-spread": 2, 132 | "prefer-template": 2, 133 | "rest-spread-spacing": [ 134 | 2, 135 | "never" 136 | ], 137 | // Variables 138 | "init-declarations": 0, 139 | "no-catch-shadow": 2, 140 | "no-delete-var": 2, 141 | "no-label-var": 2, 142 | "no-shadow": 0, 143 | "no-shadow-restricted-names": 2, 144 | "no-undef": 2, 145 | "no-undef-init": 2, 146 | "no-undefined": 0, 147 | "no-unused-vars": [ 148 | 2, 149 | { 150 | "vars": "all", 151 | "args": "none" 152 | } 153 | ], 154 | "no-use-before-define": 0, 155 | "react/require-default-props": 0, 156 | "react/prop-types": 0, 157 | "react/jsx-filename-extension": [ 158 | 1, 159 | { 160 | "extensions": [ 161 | ".js", 162 | ".jsx" 163 | ] 164 | } 165 | ], 166 | "react/prefer-stateless-function": [ 167 | 2, 168 | { 169 | "ignorePureComponents": true 170 | } 171 | ], 172 | "react/forbid-prop-types": [ 173 | 0, 174 | { 175 | "forbid": [] 176 | } 177 | ], 178 | "import/extensions": [ 179 | 1, 180 | "never", 181 | { 182 | "svg": "always" 183 | } 184 | ], 185 | "import/no-extraneous-dependencies": [ 186 | "error", 187 | { 188 | "devDependencies": true, 189 | "optionalDependencies": false, 190 | "peerDependencies": false 191 | } 192 | ], 193 | "semi": [ 194 | "error", 195 | "never" 196 | ] 197 | }, 198 | "env": { 199 | "jest": true 200 | } 201 | } -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | 2 | [ignore] 3 | .*/*[.]android.js 4 | ; Ignore unexpected extra "@providesModule" 5 | .*/node_modules/.*/node_modules/fbjs/.* 6 | 7 | [include] 8 | 9 | [libs] 10 | node_modules/react-native/Libraries/react-native/react-native-interface.js 11 | node_modules/react-native/flow/ 12 | flow/ 13 | flow-github/ 14 | 15 | [untyped] 16 | .*/node_modules/react-native 17 | 18 | [version] 19 | ^0.83.0 20 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | cache/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Sample/ 2 | src/__tests__/ 3 | package-lock.json 4 | .gitignore 5 | .babelrc 6 | .flowconfig -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "8.11.2" 4 | jobs: 5 | include: 6 | - stage: "install dependencies" 7 | script: npm install 8 | - stage: "Quality Checks" 9 | name: "es lint" 10 | script: npm run lint 11 | name: "flow check" 12 | script: npm run flow 13 | name: "unit tests" 14 | script: npm run test -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2016 Kiran Kalyan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-native-segmented-control-tab(for Android/iOS) 🚀 2 | 3 | [![npm](https://img.shields.io/npm/v/react-native-segmented-control-tab.svg?style=flat-square "npm version")](https://www.npmjs.com/package/react-native-segmented-control-tab) 4 | [![Build Status](https://travis-ci.com/kirankalyan5/react-native-segmented-control-tab.svg?branch=master)](https://travis-ci.com/kirankalyan5/react-native-segmented-control-tab) 5 | [![Monthly Downloads](https://img.shields.io/npm/dm/react-native-segmented-control-tab.svg?style=flat-square)](https://npmjs.org/package/react-native-segmented-control-tab) 6 | [![GitHub stars](https://img.shields.io/github/stars/kirankalyan5/react-native-segmented-control-tab.svg?style=flat)](https://npmjs.org/package/react-native-segmented-control-tab) 7 | [ ![PRs Welcome](https://img.shields.io/badge/PRs-Welcome-brightgreen.svg?style=flat-square)](https://github.com/kirankalyan5/react-native-segmented-control-tab/pulls) 8 | 9 | [![NPM](https://nodei.co/npm/react-native-segmented-control-tab.png?compact=true)](https://npmjs.org/package/react-native-segmented-control-tab) 10 | 11 | A react native component with the same concept of react native's SegmantedControlIOS, Primarily built to support both IOS and Android. 💡 12 | 13 | ## ScreenShots 14 | 15 | ### Android 16 | 17 | ![Demo](https://github.com/kirankalyan5/react-native-segmented-control-tab/blob/master/Sample/screenshots/screenshot_android.png) 18 | 19 | ### iOS 20 | 21 | ![Demo](https://github.com/kirankalyan5/react-native-segmented-control-tab/blob/master/Sample/screenshots/screenshot_ios.png) 22 | 23 | ## Install 24 | 25 | ```shell 26 | npm install react-native-segmented-control-tab --save 27 | ``` 28 | 29 | ## Usage 30 | 31 | ### IMPORTANT 32 | 33 | This has been made into a controlled component from 3.0. Those who are familiar with 2.0, read below for the updated usage. 34 | 35 | ```javascript 36 | import SegmentedControlTab from "react-native-segmented-control-tab"; 37 | 38 | class ConsumerComponent extends Component { 39 | constructor() { 40 | super(); 41 | this.state = { 42 | selectedIndex: 0 43 | }; 44 | } 45 | 46 | handleIndexChange = index => { 47 | this.setState({ 48 | ...this.state, 49 | selectedIndex: index 50 | }); 51 | }; 52 | 53 | render() { 54 | return ( 55 | 56 | 61 | 62 | ); 63 | } 64 | } 65 | ``` 66 | 67 | ## Props 68 | 69 | | Name | Description | Default | Type | 70 | | ---------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | ------------------------- | 71 | | values | titles of tabs | `['One', 'Two', 'Three']` | array | 72 | | selectedIndex | index of tab item to be selected initially | [0] | number | 73 | | selectedIndices | Array of indices of tab items to be selected initially - when multiple prop is true else it will take selectedIndex | [0] | arrayOf(PropTypes.number) | 74 | | enabled | Boolean to enable or disable the component | true | bool | 75 | | multiple | Boolean which enables the multiple selection option | false | bool | 76 | | borderRadius | borderRadius of whole tab | 5 | number | 77 | | tabsContainerStyle | external styles can be passed to override the default styles of the segmentedControl wrapper | base styles added in SegmentedControlTab.js | object(styles) | 78 | | tabsContainerDisableStyle | Custom style that can be passed when `enable` is set to false | default style `opacity: 0.6` | object(styles) | 79 | | tabStyle | external styles can be passed to override the default styles of the tabs | base styles added in SegmentedControlTab.js | object(styles) | 80 | | firstTabStyle | external styles can be passed to override the default styles of the first tab | base styles added in SegmentedControlTab.js | object(styles) | 81 | | lastTabStyle | external styles can be passed to override the default styles of the last tab | base styles added in SegmentedControlTab.js | object(styles) | 82 | | tabTextStyle | external styles can be passed to override the default styles of the tab title | base styles added in SegmentedControlTab.js | object(styles) | 83 | | activeTabStyle | external styles can be passed to override the default styles of the active tab | base styles added in SegmentedControlTab.js | object(styles) | 84 | | activeTabTextStyle | external styles can be passed to override the default styles of the active tab text | base styles added in SegmentedControlTab.js | object(styles) | 85 | | badges | badges values to display | `[1, 2, 3]` | array | 86 | | tabBadgeContainerStyle | external style can be passed to override the default style of the badge container | base styles added in SegmentedControlTab.js | object(styles) | 87 | | activeTabBadgeContainerStyle | external style can be passed to override the default style of the active badge container | base styles added in SegmentedControlTab.js | object(styles) | 88 | | tabBadgeStyle | external style can be passed to override the default style of the badge text | base styles added in SegmentedControlTab.js | object(styles) | 89 | | activeTabBadgeStyle | external style can be passed to override the default style of the active badge text | base styles added in SegmentedControlTab.js | object(styles) | 90 | | onTabPress | call-back function when a tab is selected | () => {} | func | 91 | | allowFontScaling | whether the segment & badge text should allow font scaling (default matches React Native default) | true | bool | 92 | | accessible | enables accessibility for each tab | true | bool | 93 | | accessibilityLabels | Reads out the given text on each tab press when voice over is enabled. If not set, uses the text passed in as values in props as a fallback | ['Label 1', 'Label 2', 'Label 3'] | array | 94 | | activeTabOpacity | Opacity value to customize tab press | 1 | number | 95 | 96 | ## Custom styling 97 | 98 | ```javascript 99 | this.setState({ selected: index })} 111 | />; 112 | 113 | const styles = StyleSheet.create({ 114 | tabsContainerStyle: { 115 | //custom styles 116 | }, 117 | tabStyle: { 118 | //custom styles 119 | }, 120 | firstTabStyle: { 121 | //custom styles 122 | }, 123 | lastTabStyle: { 124 | //custom styles 125 | }, 126 | tabTextStyle: { 127 | //custom styles 128 | }, 129 | activeTabStyle: { 130 | //custom styles 131 | }, 132 | activeTabTextStyle: { 133 | //custom styles 134 | }, 135 | tabBadgeContainerStyle: { 136 | //custom styles 137 | }, 138 | activeTabBadgeContainerStyle: { 139 | //custom styles 140 | }, 141 | tabBadgeStyle: { 142 | //custom styles 143 | }, 144 | activeTabBadgeStyle: { 145 | //custom styles 146 | } 147 | }); 148 | ``` 149 | 150 | ## P.S. 151 | 152 | 🙏 credits to all the other devs who had built the similar concept, had referred some of the their components on the github, to get a fair idea 💡 to build this.😊 153 | If you have any idea in implementing this further, let me know or you can update it and raise a PR.😊🚀 154 | 155 | ## License 156 | 157 | _MIT_ 158 | -------------------------------------------------------------------------------- /Sample/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "babel-preset-expo" 4 | ], 5 | "env": { 6 | "development": { 7 | "plugins": [ 8 | "transform-react-jsx-source" 9 | ] 10 | } 11 | } 12 | } -------------------------------------------------------------------------------- /Sample/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/**/* 2 | .expo/* 3 | npm-debug.* 4 | -------------------------------------------------------------------------------- /Sample/.snyk: -------------------------------------------------------------------------------- 1 | # Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities. 2 | version: v1.14.1 3 | ignore: {} 4 | # patches apply the minimum changes required to fix a vulnerability 5 | patch: 6 | 'npm:lodash:20180130': 7 | - react-native > plist > xmlbuilder > lodash: 8 | patched: '2019-05-18T08:59:41.096Z' 9 | SNYK-JS-LODASH-450202: 10 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-template > babel-types > lodash: 11 | patched: '2019-07-04T09:04:35.900Z' 12 | - react-native > lodash: 13 | patched: '2019-07-04T09:04:35.900Z' 14 | - react-native > babel-register > lodash: 15 | patched: '2019-07-04T09:04:35.900Z' 16 | - react-native > babel-core > lodash: 17 | patched: '2019-07-04T09:04:35.900Z' 18 | - expo > react-native-svg > lodash: 19 | patched: '2019-07-04T09:04:35.900Z' 20 | - expo > @expo/vector-icons > lodash: 21 | patched: '2019-07-04T09:04:35.900Z' 22 | - react-native > metro > @babel/core > lodash: 23 | patched: '2019-07-04T09:04:35.900Z' 24 | - expo > @expo/vector-icons > react-native-vector-icons > lodash: 25 | patched: '2019-07-04T09:04:35.900Z' 26 | - react-native > metro > async > lodash: 27 | patched: '2019-07-04T09:04:35.900Z' 28 | - react-native > metro > babel-register > lodash: 29 | patched: '2019-07-04T09:04:35.900Z' 30 | - react-native > babel-core > babel-register > lodash: 31 | patched: '2019-07-04T09:04:35.900Z' 32 | - react-native > babel-register > babel-core > lodash: 33 | patched: '2019-07-04T09:04:35.900Z' 34 | - react-native > metro > babel-core > lodash: 35 | patched: '2019-07-04T09:04:35.900Z' 36 | - react-native > fbjs-scripts > babel-core > lodash: 37 | patched: '2019-07-04T09:04:35.900Z' 38 | - react-native > metro > babel-generator > lodash: 39 | patched: '2019-07-04T09:04:35.900Z' 40 | - react-native > babel-core > babel-generator > lodash: 41 | patched: '2019-07-04T09:04:35.900Z' 42 | - react-native > metro > babel-plugin-react-transform > lodash: 43 | patched: '2019-07-04T09:04:35.900Z' 44 | - react-native > metro > babel-template > lodash: 45 | patched: '2019-07-04T09:04:35.900Z' 46 | - react-native > babel-core > babel-template > lodash: 47 | patched: '2019-07-04T09:04:35.900Z' 48 | - react-native > babel-plugin-transform-class-properties > babel-template > lodash: 49 | patched: '2019-07-04T09:04:35.900Z' 50 | - react-native > babel-core > babel-traverse > lodash: 51 | patched: '2019-07-04T09:04:35.900Z' 52 | - react-native > babel-core > babel-types > lodash: 53 | patched: '2019-07-04T09:04:35.900Z' 54 | - react-native > fbjs-scripts > babel-core > babel-template > lodash: 55 | patched: '2019-07-04T09:04:35.900Z' 56 | - react-native > babel-core > babel-generator > babel-types > lodash: 57 | patched: '2019-07-04T09:04:35.900Z' 58 | - react-native > metro > @babel/traverse > @babel/types > lodash: 59 | patched: '2019-07-04T09:04:35.900Z' 60 | - react-native > metro > babel-core > babel-register > lodash: 61 | patched: '2019-07-04T09:04:35.900Z' 62 | - react-native > fbjs-scripts > babel-core > babel-register > lodash: 63 | patched: '2019-07-04T09:04:35.900Z' 64 | - react-native > metro > babel-register > babel-core > lodash: 65 | patched: '2019-07-04T09:04:35.900Z' 66 | - react-native > babel-register > babel-core > babel-generator > lodash: 67 | patched: '2019-07-04T09:04:35.900Z' 68 | - react-native > metro > babel-core > babel-generator > lodash: 69 | patched: '2019-07-04T09:04:35.900Z' 70 | - react-native > fbjs-scripts > babel-core > babel-generator > lodash: 71 | patched: '2019-07-04T09:04:35.900Z' 72 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-react-transform > lodash: 73 | patched: '2019-07-04T09:04:35.900Z' 74 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > lodash: 75 | patched: '2019-07-04T09:04:35.900Z' 76 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > lodash: 77 | patched: '2019-07-04T09:04:35.900Z' 78 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > lodash: 79 | patched: '2019-07-04T09:04:35.900Z' 80 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > lodash: 81 | patched: '2019-07-04T09:04:35.900Z' 82 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > lodash: 83 | patched: '2019-07-04T09:04:35.900Z' 84 | - react-native > metro > babel-preset-react-native > babel-plugin-react-transform > lodash: 85 | patched: '2019-07-04T09:04:35.900Z' 86 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-react-transform > lodash: 87 | patched: '2019-07-04T09:04:35.900Z' 88 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-template > lodash: 89 | patched: '2019-07-04T09:04:35.900Z' 90 | - react-native > babel-register > babel-core > babel-template > lodash: 91 | patched: '2019-07-04T09:04:35.900Z' 92 | - react-native > babel-core > babel-traverse > babel-types > lodash: 93 | patched: '2019-07-04T09:04:35.900Z' 94 | - react-native > metro > babel-core > babel-template > lodash: 95 | patched: '2019-07-04T09:04:35.900Z' 96 | - react-native > babel-core > babel-helpers > babel-template > lodash: 97 | patched: '2019-07-04T09:04:35.900Z' 98 | - react-native > metro > babel-preset-react-native > babel-template > lodash: 99 | patched: '2019-07-04T09:04:35.900Z' 100 | - expo > babel-preset-expo > babel-preset-react-native > babel-template > lodash: 101 | patched: '2019-07-04T09:04:35.900Z' 102 | - react-native > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 103 | patched: '2019-07-04T09:04:35.900Z' 104 | - react-native > babel-core > babel-template > babel-types > lodash: 105 | patched: '2019-07-04T09:04:35.900Z' 106 | - react-native > metro > babel-template > babel-types > lodash: 107 | patched: '2019-07-04T09:04:35.900Z' 108 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 109 | patched: '2019-07-04T09:04:35.900Z' 110 | - expo > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > lodash: 111 | patched: '2019-07-04T09:04:35.900Z' 112 | - react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-types > lodash: 113 | patched: '2019-07-04T09:04:35.900Z' 114 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-traverse > lodash: 115 | patched: '2019-07-04T09:04:35.900Z' 116 | - react-native > babel-register > babel-core > babel-traverse > lodash: 117 | patched: '2019-07-04T09:04:35.900Z' 118 | - react-native > metro > babel-core > babel-traverse > lodash: 119 | patched: '2019-07-04T09:04:35.900Z' 120 | - react-native > fbjs-scripts > babel-core > babel-traverse > lodash: 121 | patched: '2019-07-04T09:04:35.900Z' 122 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 123 | patched: '2019-07-04T09:04:35.900Z' 124 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 125 | patched: '2019-07-04T09:04:35.900Z' 126 | - react-native > metro > babel-template > babel-traverse > lodash: 127 | patched: '2019-07-04T09:04:35.900Z' 128 | - react-native > babel-core > babel-template > babel-traverse > lodash: 129 | patched: '2019-07-04T09:04:35.900Z' 130 | - react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 131 | patched: '2019-07-04T09:04:35.900Z' 132 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-types > lodash: 133 | patched: '2019-07-04T09:04:35.900Z' 134 | - react-native > babel-register > babel-core > babel-types > lodash: 135 | patched: '2019-07-04T09:04:35.900Z' 136 | - react-native > metro > babel-core > babel-types > lodash: 137 | patched: '2019-07-04T09:04:35.900Z' 138 | - react-native > fbjs-scripts > babel-core > babel-types > lodash: 139 | patched: '2019-07-04T09:04:35.900Z' 140 | - react-native > metro > babel-generator > babel-types > lodash: 141 | patched: '2019-07-04T09:04:35.900Z' 142 | - react-native > metro > @babel/plugin-transform-parameters > @babel/helper-get-function-arity > @babel/types > lodash: 143 | patched: '2019-07-04T09:04:35.900Z' 144 | - react-native > babel-core > babel-template > babel-traverse > babel-types > lodash: 145 | patched: '2019-07-04T09:04:35.900Z' 146 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-react-transform > lodash: 147 | patched: '2019-07-04T09:04:35.900Z' 148 | - react-native > fbjs-scripts > babel-core > babel-traverse > babel-types > lodash: 149 | patched: '2019-07-04T09:04:35.900Z' 150 | - react-native > metro > babel-core > babel-traverse > babel-types > lodash: 151 | patched: '2019-07-04T09:04:35.900Z' 152 | - react-native > metro > babel-template > babel-traverse > babel-types > lodash: 153 | patched: '2019-07-04T09:04:35.900Z' 154 | - react-native > metro > babel-register > babel-core > babel-template > lodash: 155 | patched: '2019-07-04T09:04:35.900Z' 156 | - react-native > babel-register > babel-core > babel-traverse > babel-types > lodash: 157 | patched: '2019-07-04T09:04:35.900Z' 158 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-traverse > babel-types > lodash: 159 | patched: '2019-07-04T09:04:35.900Z' 160 | - expo > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > babel-types > lodash: 161 | patched: '2019-07-04T09:04:35.900Z' 162 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 163 | patched: '2019-07-04T09:04:35.900Z' 164 | - react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 165 | patched: '2019-07-04T09:04:35.900Z' 166 | - react-native > babel-register > babel-core > babel-helpers > babel-template > lodash: 167 | patched: '2019-07-04T09:04:35.900Z' 168 | - react-native > metro > babel-register > babel-core > babel-generator > lodash: 169 | patched: '2019-07-04T09:04:35.900Z' 170 | - react-native > metro > babel-core > babel-helpers > babel-template > lodash: 171 | patched: '2019-07-04T09:04:35.900Z' 172 | - react-native > fbjs-scripts > babel-core > babel-helpers > babel-template > lodash: 173 | patched: '2019-07-04T09:04:35.900Z' 174 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-template > lodash: 175 | patched: '2019-07-04T09:04:35.900Z' 176 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 177 | patched: '2019-07-04T09:04:35.900Z' 178 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-template > lodash: 179 | patched: '2019-07-04T09:04:35.900Z' 180 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > lodash: 181 | patched: '2019-07-04T09:04:35.900Z' 182 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > lodash: 183 | patched: '2019-07-04T09:04:35.900Z' 184 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > lodash: 185 | patched: '2019-07-04T09:04:35.900Z' 186 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > lodash: 187 | patched: '2019-07-04T09:04:35.900Z' 188 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > lodash: 189 | patched: '2019-07-04T09:04:35.900Z' 190 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 191 | patched: '2019-07-04T09:04:35.900Z' 192 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 193 | patched: '2019-07-04T09:04:35.900Z' 194 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 195 | patched: '2019-07-04T09:04:35.900Z' 196 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 197 | patched: '2019-07-04T09:04:35.900Z' 198 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 199 | patched: '2019-07-04T09:04:35.900Z' 200 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 201 | patched: '2019-07-04T09:04:35.900Z' 202 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > lodash: 203 | patched: '2019-07-04T09:04:35.900Z' 204 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > lodash: 205 | patched: '2019-07-04T09:04:35.900Z' 206 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > lodash: 207 | patched: '2019-07-04T09:04:35.900Z' 208 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > lodash: 209 | patched: '2019-07-04T09:04:35.900Z' 210 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > lodash: 211 | patched: '2019-07-04T09:04:35.900Z' 212 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > lodash: 213 | patched: '2019-07-04T09:04:35.900Z' 214 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > lodash: 215 | patched: '2019-07-04T09:04:35.900Z' 216 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > lodash: 217 | patched: '2019-07-04T09:04:35.900Z' 218 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > lodash: 219 | patched: '2019-07-04T09:04:35.900Z' 220 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > lodash: 221 | patched: '2019-07-04T09:04:35.900Z' 222 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > lodash: 223 | patched: '2019-07-04T09:04:35.900Z' 224 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > lodash: 225 | patched: '2019-07-04T09:04:35.900Z' 226 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > lodash: 227 | patched: '2019-07-04T09:04:35.900Z' 228 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > lodash: 229 | patched: '2019-07-04T09:04:35.900Z' 230 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > lodash: 231 | patched: '2019-07-04T09:04:35.900Z' 232 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > lodash: 233 | patched: '2019-07-04T09:04:35.900Z' 234 | - expo > babel-preset-expo > babel-preset-react-native > babel-template > babel-types > lodash: 235 | patched: '2019-07-04T09:04:35.900Z' 236 | - react-native > metro > babel-preset-react-native > babel-template > babel-types > lodash: 237 | patched: '2019-07-04T09:04:35.900Z' 238 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > lodash: 239 | patched: '2019-07-04T09:04:35.900Z' 240 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > lodash: 241 | patched: '2019-07-04T09:04:35.900Z' 242 | - react-native > babel-core > babel-helpers > babel-template > babel-types > lodash: 243 | patched: '2019-07-04T09:04:35.900Z' 244 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > lodash: 245 | patched: '2019-07-04T09:04:35.900Z' 246 | - react-native > fbjs-scripts > babel-core > babel-template > babel-types > lodash: 247 | patched: '2019-07-04T09:04:35.900Z' 248 | - react-native > metro > babel-core > babel-template > babel-types > lodash: 249 | patched: '2019-07-04T09:04:35.900Z' 250 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > lodash: 251 | patched: '2019-07-04T09:04:35.900Z' 252 | - react-native > babel-register > babel-core > babel-template > babel-types > lodash: 253 | patched: '2019-07-04T09:04:35.900Z' 254 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-template > babel-types > lodash: 255 | patched: '2019-07-04T09:04:35.900Z' 256 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-template > lodash: 257 | patched: '2019-07-04T09:04:35.900Z' 258 | - react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-types > lodash: 259 | patched: '2019-07-04T09:04:35.900Z' 260 | - react-native > metro > babel-register > babel-core > babel-types > lodash: 261 | patched: '2019-07-04T09:04:35.900Z' 262 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > lodash: 263 | patched: '2019-07-04T09:04:35.900Z' 264 | - expo > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-types > lodash: 265 | patched: '2019-07-04T09:04:35.900Z' 266 | - expo > react-native-maps > babel-preset-react-native > react-transform-hmr > react-proxy > lodash: 267 | patched: '2019-07-04T09:04:35.900Z' 268 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 269 | patched: '2019-07-04T09:04:35.900Z' 270 | - react-native > metro > babel-preset-react-native > react-transform-hmr > react-proxy > lodash: 271 | patched: '2019-07-04T09:04:35.900Z' 272 | - expo > babel-preset-expo > babel-preset-react-native > react-transform-hmr > react-proxy > lodash: 273 | patched: '2019-07-04T09:04:35.900Z' 274 | - react-native > metro > babel-register > babel-core > babel-traverse > lodash: 275 | patched: '2019-07-04T09:04:35.900Z' 276 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > lodash: 277 | patched: '2019-07-04T09:04:35.900Z' 278 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > lodash: 279 | patched: '2019-07-04T09:04:35.900Z' 280 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 281 | patched: '2019-07-04T09:04:35.900Z' 282 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 283 | patched: '2019-07-04T09:04:35.900Z' 284 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 285 | patched: '2019-07-04T09:04:35.900Z' 286 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 287 | patched: '2019-07-04T09:04:35.900Z' 288 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 289 | patched: '2019-07-04T09:04:35.900Z' 290 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 291 | patched: '2019-07-04T09:04:35.900Z' 292 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-traverse > lodash: 293 | patched: '2019-07-04T09:04:35.900Z' 294 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > lodash: 295 | patched: '2019-07-04T09:04:35.900Z' 296 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-traverse > lodash: 297 | patched: '2019-07-04T09:04:35.900Z' 298 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > lodash: 299 | patched: '2019-07-04T09:04:35.900Z' 300 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > lodash: 301 | patched: '2019-07-04T09:04:35.900Z' 302 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > lodash: 303 | patched: '2019-07-04T09:04:35.900Z' 304 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-traverse > lodash: 305 | patched: '2019-07-04T09:04:35.900Z' 306 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-traverse > lodash: 307 | patched: '2019-07-04T09:04:35.900Z' 308 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > lodash: 309 | patched: '2019-07-04T09:04:35.900Z' 310 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > lodash: 311 | patched: '2019-07-04T09:04:35.900Z' 312 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > lodash: 313 | patched: '2019-07-04T09:04:35.900Z' 314 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-traverse > lodash: 315 | patched: '2019-07-04T09:04:35.900Z' 316 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > lodash: 317 | patched: '2019-07-04T09:04:35.900Z' 318 | - react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > lodash: 319 | patched: '2019-07-04T09:04:35.900Z' 320 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-types > lodash: 321 | patched: '2019-07-04T09:04:35.900Z' 322 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > lodash: 323 | patched: '2019-07-04T09:04:35.900Z' 324 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-types > lodash: 325 | patched: '2019-07-04T09:04:35.900Z' 326 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-types > lodash: 327 | patched: '2019-07-04T09:04:35.900Z' 328 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-types > lodash: 329 | patched: '2019-07-04T09:04:35.900Z' 330 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-types > lodash: 331 | patched: '2019-07-04T09:04:35.900Z' 332 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-types > lodash: 333 | patched: '2019-07-04T09:04:35.900Z' 334 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-template > babel-traverse > lodash: 335 | patched: '2019-07-04T09:04:35.900Z' 336 | - react-native > babel-register > babel-core > babel-template > babel-traverse > lodash: 337 | patched: '2019-07-04T09:04:35.900Z' 338 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-sticky-regex > babel-helper-regex > lodash: 339 | patched: '2019-07-04T09:04:35.900Z' 340 | - react-native > metro > babel-core > babel-template > babel-traverse > lodash: 341 | patched: '2019-07-04T09:04:35.900Z' 342 | - react-native > fbjs-scripts > babel-core > babel-template > babel-traverse > lodash: 343 | patched: '2019-07-04T09:04:35.900Z' 344 | - react-native > babel-core > babel-helpers > babel-template > babel-traverse > lodash: 345 | patched: '2019-07-04T09:04:35.900Z' 346 | - react-native > metro > babel-preset-react-native > babel-template > babel-traverse > lodash: 347 | patched: '2019-07-04T09:04:35.900Z' 348 | - expo > babel-preset-expo > babel-preset-react-native > babel-template > babel-traverse > lodash: 349 | patched: '2019-07-04T09:04:35.900Z' 350 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 351 | patched: '2019-07-04T09:04:35.900Z' 352 | - expo > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > babel-traverse > lodash: 353 | patched: '2019-07-04T09:04:35.900Z' 354 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-sticky-regex > babel-types > lodash: 355 | patched: '2019-07-04T09:04:35.900Z' 356 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-unicode-regex > babel-helper-regex > lodash: 357 | patched: '2019-07-04T09:04:35.900Z' 358 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-types > lodash: 359 | patched: '2019-07-04T09:04:35.900Z' 360 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-types > lodash: 361 | patched: '2019-07-04T09:04:35.900Z' 362 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-types > lodash: 363 | patched: '2019-07-04T09:04:35.900Z' 364 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-types > lodash: 365 | patched: '2019-07-04T09:04:35.900Z' 366 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-types > lodash: 367 | patched: '2019-07-04T09:04:35.900Z' 368 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-types > lodash: 369 | patched: '2019-07-04T09:04:35.900Z' 370 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-types > lodash: 371 | patched: '2019-07-04T09:04:35.900Z' 372 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-types > lodash: 373 | patched: '2019-07-04T09:04:35.900Z' 374 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-types > lodash: 375 | patched: '2019-07-04T09:04:35.900Z' 376 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-types > lodash: 377 | patched: '2019-07-04T09:04:35.900Z' 378 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-types > lodash: 379 | patched: '2019-07-04T09:04:35.900Z' 380 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > lodash: 381 | patched: '2019-07-04T09:04:35.900Z' 382 | - react-native > babel-register > babel-core > babel-generator > babel-types > lodash: 383 | patched: '2019-07-04T09:04:35.900Z' 384 | - react-native > metro > babel-core > babel-generator > babel-types > lodash: 385 | patched: '2019-07-04T09:04:35.900Z' 386 | - react-native > fbjs-scripts > babel-core > babel-generator > babel-types > lodash: 387 | patched: '2019-07-04T09:04:35.900Z' 388 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 389 | patched: '2019-07-04T09:04:35.900Z' 390 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 391 | patched: '2019-07-04T09:04:35.900Z' 392 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 393 | patched: '2019-07-04T09:04:35.900Z' 394 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 395 | patched: '2019-07-04T09:04:35.900Z' 396 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 397 | patched: '2019-07-04T09:04:35.900Z' 398 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 399 | patched: '2019-07-04T09:04:35.900Z' 400 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 401 | patched: '2019-07-04T09:04:35.900Z' 402 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 403 | patched: '2019-07-04T09:04:35.900Z' 404 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 405 | patched: '2019-07-04T09:04:35.900Z' 406 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 407 | patched: '2019-07-04T09:04:35.900Z' 408 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 409 | patched: '2019-07-04T09:04:35.900Z' 410 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 411 | patched: '2019-07-04T09:04:35.900Z' 412 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-types > lodash: 413 | patched: '2019-07-04T09:04:35.900Z' 414 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-types > lodash: 415 | patched: '2019-07-04T09:04:35.900Z' 416 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-types > lodash: 417 | patched: '2019-07-04T09:04:35.900Z' 418 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-types > lodash: 419 | patched: '2019-07-04T09:04:35.900Z' 420 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-types > lodash: 421 | patched: '2019-07-04T09:04:35.900Z' 422 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-types > lodash: 423 | patched: '2019-07-04T09:04:35.900Z' 424 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 425 | patched: '2019-07-04T09:04:35.900Z' 426 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-types > lodash: 427 | patched: '2019-07-04T09:04:35.900Z' 428 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 429 | patched: '2019-07-04T09:04:35.900Z' 430 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-shorthand-properties > babel-types > lodash: 431 | patched: '2019-07-04T09:04:35.900Z' 432 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 433 | patched: '2019-07-04T09:04:35.900Z' 434 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 435 | patched: '2019-07-04T09:04:35.900Z' 436 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 437 | patched: '2019-07-04T09:04:35.900Z' 438 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 439 | patched: '2019-07-04T09:04:35.900Z' 440 | - react-native > metro > @babel/plugin-transform-modules-commonjs > @babel/helper-module-transforms > @babel/template > @babel/types > lodash: 441 | patched: '2019-07-04T09:04:35.900Z' 442 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-types > lodash: 443 | patched: '2019-07-04T09:04:35.900Z' 444 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-react-jsx > babel-helper-builder-react-jsx > babel-types > lodash: 445 | patched: '2019-07-04T09:04:35.900Z' 446 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-react-jsx > babel-helper-builder-react-jsx > babel-types > lodash: 447 | patched: '2019-07-04T09:04:35.900Z' 448 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-react-jsx > babel-helper-builder-react-jsx > babel-types > lodash: 449 | patched: '2019-07-04T09:04:35.900Z' 450 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-react-jsx > babel-helper-builder-react-jsx > babel-types > lodash: 451 | patched: '2019-07-04T09:04:35.900Z' 452 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-react-jsx > babel-helper-builder-react-jsx > babel-types > lodash: 453 | patched: '2019-07-04T09:04:35.900Z' 454 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-regenerator > regenerator-transform > babel-types > lodash: 455 | patched: '2019-07-04T09:04:35.900Z' 456 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-regenerator > regenerator-transform > babel-types > lodash: 457 | patched: '2019-07-04T09:04:35.900Z' 458 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-regenerator > regenerator-transform > babel-types > lodash: 459 | patched: '2019-07-04T09:04:35.900Z' 460 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 461 | patched: '2019-07-04T09:04:35.900Z' 462 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 463 | patched: '2019-07-04T09:04:35.900Z' 464 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 465 | patched: '2019-07-04T09:04:35.900Z' 466 | - react-native > metro > babel-register > babel-core > babel-generator > babel-types > lodash: 467 | patched: '2019-07-04T09:04:35.900Z' 468 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 469 | patched: '2019-07-04T09:04:35.900Z' 470 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 471 | patched: '2019-07-04T09:04:35.900Z' 472 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 473 | patched: '2019-07-04T09:04:35.900Z' 474 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-types > lodash: 475 | patched: '2019-07-04T09:04:35.900Z' 476 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-types > lodash: 477 | patched: '2019-07-04T09:04:35.900Z' 478 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-types > lodash: 479 | patched: '2019-07-04T09:04:35.900Z' 480 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-types > lodash: 481 | patched: '2019-07-04T09:04:35.900Z' 482 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-sticky-regex > babel-helper-regex > babel-types > lodash: 483 | patched: '2019-07-04T09:04:35.900Z' 484 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-unicode-regex > babel-helper-regex > babel-types > lodash: 485 | patched: '2019-07-04T09:04:35.900Z' 486 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-types > lodash: 487 | patched: '2019-07-04T09:04:35.900Z' 488 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > babel-traverse > lodash: 489 | patched: '2019-07-04T09:04:35.900Z' 490 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-types > lodash: 491 | patched: '2019-07-04T09:04:35.900Z' 492 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-types > lodash: 493 | patched: '2019-07-04T09:04:35.900Z' 494 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-types > lodash: 495 | patched: '2019-07-04T09:04:35.900Z' 496 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-types > lodash: 497 | patched: '2019-07-04T09:04:35.900Z' 498 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-optimise-call-expression > babel-types > lodash: 499 | patched: '2019-07-04T09:04:35.900Z' 500 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-template > babel-traverse > lodash: 501 | patched: '2019-07-04T09:04:35.900Z' 502 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 503 | patched: '2019-07-04T09:04:35.900Z' 504 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 505 | patched: '2019-07-04T09:04:35.900Z' 506 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 507 | patched: '2019-07-04T09:04:35.900Z' 508 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 509 | patched: '2019-07-04T09:04:35.900Z' 510 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 511 | patched: '2019-07-04T09:04:35.900Z' 512 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-optimise-call-expression > babel-types > lodash: 513 | patched: '2019-07-04T09:04:35.900Z' 514 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > lodash: 515 | patched: '2019-07-04T09:04:35.900Z' 516 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > lodash: 517 | patched: '2019-07-04T09:04:35.900Z' 518 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > lodash: 519 | patched: '2019-07-04T09:04:35.900Z' 520 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > lodash: 521 | patched: '2019-07-04T09:04:35.900Z' 522 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > lodash: 523 | patched: '2019-07-04T09:04:35.900Z' 524 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > lodash: 525 | patched: '2019-07-04T09:04:35.900Z' 526 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > lodash: 527 | patched: '2019-07-04T09:04:35.900Z' 528 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > lodash: 529 | patched: '2019-07-04T09:04:35.900Z' 530 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > lodash: 531 | patched: '2019-07-04T09:04:35.900Z' 532 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > lodash: 533 | patched: '2019-07-04T09:04:35.900Z' 534 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > lodash: 535 | patched: '2019-07-04T09:04:35.900Z' 536 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > lodash: 537 | patched: '2019-07-04T09:04:35.900Z' 538 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > lodash: 539 | patched: '2019-07-04T09:04:35.900Z' 540 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > lodash: 541 | patched: '2019-07-04T09:04:35.900Z' 542 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > lodash: 543 | patched: '2019-07-04T09:04:35.900Z' 544 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 545 | patched: '2019-07-04T09:04:35.900Z' 546 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 547 | patched: '2019-07-04T09:04:35.900Z' 548 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 549 | patched: '2019-07-04T09:04:35.900Z' 550 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 551 | patched: '2019-07-04T09:04:35.900Z' 552 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 553 | patched: '2019-07-04T09:04:35.900Z' 554 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 555 | patched: '2019-07-04T09:04:35.900Z' 556 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 557 | patched: '2019-07-04T09:04:35.900Z' 558 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 559 | patched: '2019-07-04T09:04:35.900Z' 560 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 561 | patched: '2019-07-04T09:04:35.900Z' 562 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 563 | patched: '2019-07-04T09:04:35.900Z' 564 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 565 | patched: '2019-07-04T09:04:35.900Z' 566 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 567 | patched: '2019-07-04T09:04:35.900Z' 568 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-template > babel-traverse > lodash: 569 | patched: '2019-07-04T09:04:35.900Z' 570 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-optimise-call-expression > babel-types > lodash: 571 | patched: '2019-07-04T09:04:35.900Z' 572 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-optimise-call-expression > babel-types > lodash: 573 | patched: '2019-07-04T09:04:35.900Z' 574 | - react-native > fbjs-scripts > babel-core > babel-helpers > babel-template > babel-traverse > lodash: 575 | patched: '2019-07-04T09:04:35.900Z' 576 | - react-native > metro > babel-core > babel-helpers > babel-template > babel-traverse > lodash: 577 | patched: '2019-07-04T09:04:35.900Z' 578 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-optimise-call-expression > babel-types > lodash: 579 | patched: '2019-07-04T09:04:35.900Z' 580 | - react-native > babel-register > babel-core > babel-helpers > babel-template > babel-traverse > lodash: 581 | patched: '2019-07-04T09:04:35.900Z' 582 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-types > lodash: 583 | patched: '2019-07-04T09:04:35.900Z' 584 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-types > lodash: 585 | patched: '2019-07-04T09:04:35.900Z' 586 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-types > lodash: 587 | patched: '2019-07-04T09:04:35.900Z' 588 | - react-native > metro > babel-register > babel-core > babel-template > babel-traverse > lodash: 589 | patched: '2019-07-04T09:04:35.900Z' 590 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-types > lodash: 591 | patched: '2019-07-04T09:04:35.900Z' 592 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-types > lodash: 593 | patched: '2019-07-04T09:04:35.900Z' 594 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-types > lodash: 595 | patched: '2019-07-04T09:04:35.900Z' 596 | - expo > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > lodash: 597 | patched: '2019-07-04T09:04:35.900Z' 598 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 599 | patched: '2019-07-04T09:04:35.900Z' 600 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 601 | patched: '2019-07-04T09:04:35.900Z' 602 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 603 | patched: '2019-07-04T09:04:35.900Z' 604 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 605 | patched: '2019-07-04T09:04:35.900Z' 606 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 607 | patched: '2019-07-04T09:04:35.900Z' 608 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 609 | patched: '2019-07-04T09:04:35.900Z' 610 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 611 | patched: '2019-07-04T09:04:35.900Z' 612 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > lodash: 613 | patched: '2019-07-04T09:04:35.900Z' 614 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > lodash: 615 | patched: '2019-07-04T09:04:35.900Z' 616 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > lodash: 617 | patched: '2019-07-04T09:04:35.900Z' 618 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > lodash: 619 | patched: '2019-07-04T09:04:35.900Z' 620 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > lodash: 621 | patched: '2019-07-04T09:04:35.900Z' 622 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 623 | patched: '2019-07-04T09:04:35.900Z' 624 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 625 | patched: '2019-07-04T09:04:35.900Z' 626 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 627 | patched: '2019-07-04T09:04:35.900Z' 628 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 629 | patched: '2019-07-04T09:04:35.900Z' 630 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 631 | patched: '2019-07-04T09:04:35.900Z' 632 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 633 | patched: '2019-07-04T09:04:35.900Z' 634 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 635 | patched: '2019-07-04T09:04:35.900Z' 636 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > lodash: 637 | patched: '2019-07-04T09:04:35.900Z' 638 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 639 | patched: '2019-07-04T09:04:35.900Z' 640 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 641 | patched: '2019-07-04T09:04:35.900Z' 642 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 643 | patched: '2019-07-04T09:04:35.900Z' 644 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-types > lodash: 645 | patched: '2019-07-04T09:04:35.900Z' 646 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-types > lodash: 647 | patched: '2019-07-04T09:04:35.900Z' 648 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > lodash: 649 | patched: '2019-07-04T09:04:35.900Z' 650 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > lodash: 651 | patched: '2019-07-04T09:04:35.900Z' 652 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > lodash: 653 | patched: '2019-07-04T09:04:35.900Z' 654 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > lodash: 655 | patched: '2019-07-04T09:04:35.900Z' 656 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > lodash: 657 | patched: '2019-07-04T09:04:35.900Z' 658 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-traverse > lodash: 659 | patched: '2019-07-04T09:04:35.900Z' 660 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-traverse > lodash: 661 | patched: '2019-07-04T09:04:35.900Z' 662 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > lodash: 663 | patched: '2019-07-04T09:04:35.900Z' 664 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-types > lodash: 665 | patched: '2019-07-04T09:04:35.900Z' 666 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-types > lodash: 667 | patched: '2019-07-04T09:04:35.900Z' 668 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-types > lodash: 669 | patched: '2019-07-04T09:04:35.900Z' 670 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 671 | patched: '2019-07-04T09:04:35.900Z' 672 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 673 | patched: '2019-07-04T09:04:35.900Z' 674 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 675 | patched: '2019-07-04T09:04:35.900Z' 676 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 677 | patched: '2019-07-04T09:04:35.900Z' 678 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 679 | patched: '2019-07-04T09:04:35.900Z' 680 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 681 | patched: '2019-07-04T09:04:35.900Z' 682 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 683 | patched: '2019-07-04T09:04:35.900Z' 684 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > lodash: 685 | patched: '2019-07-04T09:04:35.900Z' 686 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 687 | patched: '2019-07-04T09:04:35.900Z' 688 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 689 | patched: '2019-07-04T09:04:35.900Z' 690 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 691 | patched: '2019-07-04T09:04:35.900Z' 692 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 693 | patched: '2019-07-04T09:04:35.900Z' 694 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 695 | patched: '2019-07-04T09:04:35.900Z' 696 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 697 | patched: '2019-07-04T09:04:35.900Z' 698 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 699 | patched: '2019-07-04T09:04:35.900Z' 700 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 701 | patched: '2019-07-04T09:04:35.900Z' 702 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 703 | patched: '2019-07-04T09:04:35.900Z' 704 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 705 | patched: '2019-07-04T09:04:35.900Z' 706 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 707 | patched: '2019-07-04T09:04:35.900Z' 708 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-types > lodash: 709 | patched: '2019-07-04T09:04:35.900Z' 710 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-types > lodash: 711 | patched: '2019-07-04T09:04:35.900Z' 712 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 713 | patched: '2019-07-04T09:04:35.900Z' 714 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 715 | patched: '2019-07-04T09:04:35.900Z' 716 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 717 | patched: '2019-07-04T09:04:35.900Z' 718 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 719 | patched: '2019-07-04T09:04:35.900Z' 720 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 721 | patched: '2019-07-04T09:04:35.900Z' 722 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-types > lodash: 723 | patched: '2019-07-04T09:04:35.900Z' 724 | - expo > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-types > lodash: 725 | patched: '2019-07-04T09:04:35.900Z' 726 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > lodash: 727 | patched: '2019-07-04T09:04:35.900Z' 728 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > lodash: 729 | patched: '2019-07-04T09:04:35.900Z' 730 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > lodash: 731 | patched: '2019-07-04T09:04:35.900Z' 732 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > lodash: 733 | patched: '2019-07-04T09:04:35.900Z' 734 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > lodash: 735 | patched: '2019-07-04T09:04:35.900Z' 736 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 737 | patched: '2019-07-04T09:04:35.900Z' 738 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 739 | patched: '2019-07-04T09:04:35.900Z' 740 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 741 | patched: '2019-07-04T09:04:35.900Z' 742 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 743 | patched: '2019-07-04T09:04:35.900Z' 744 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 745 | patched: '2019-07-04T09:04:35.900Z' 746 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 747 | patched: '2019-07-04T09:04:35.900Z' 748 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > lodash: 749 | patched: '2019-07-04T09:04:35.900Z' 750 | - react-native > metro > babel-register > babel-core > babel-template > babel-types > lodash: 751 | patched: '2019-07-04T09:04:35.900Z' 752 | - react-native > babel-register > babel-core > babel-helpers > babel-template > babel-types > lodash: 753 | patched: '2019-07-04T09:04:35.900Z' 754 | - react-native > metro > babel-core > babel-helpers > babel-template > babel-types > lodash: 755 | patched: '2019-07-04T09:04:35.900Z' 756 | - react-native > fbjs-scripts > babel-core > babel-helpers > babel-template > babel-types > lodash: 757 | patched: '2019-07-04T09:04:35.900Z' 758 | - react-native > inquirer > lodash: 759 | patched: '2019-07-04T09:04:35.900Z' 760 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > lodash: 761 | patched: '2019-07-04T09:04:35.900Z' 762 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 763 | patched: '2019-07-04T09:04:35.900Z' 764 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 765 | patched: '2019-07-04T09:04:35.900Z' 766 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 767 | patched: '2019-07-04T09:04:35.900Z' 768 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 769 | patched: '2019-07-04T09:04:35.900Z' 770 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 771 | patched: '2019-07-04T09:04:35.900Z' 772 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > lodash: 773 | patched: '2019-07-04T09:04:35.900Z' 774 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > lodash: 775 | patched: '2019-07-04T09:04:35.900Z' 776 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > lodash: 777 | patched: '2019-07-04T09:04:35.900Z' 778 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > lodash: 779 | patched: '2019-07-04T09:04:35.900Z' 780 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > lodash: 781 | patched: '2019-07-04T09:04:35.900Z' 782 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > lodash: 783 | patched: '2019-07-04T09:04:35.900Z' 784 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > lodash: 785 | patched: '2019-07-04T09:04:35.900Z' 786 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > lodash: 787 | patched: '2019-07-04T09:04:35.900Z' 788 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 789 | patched: '2019-07-04T09:04:35.900Z' 790 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 791 | patched: '2019-07-04T09:04:35.900Z' 792 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 793 | patched: '2019-07-04T09:04:35.900Z' 794 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 795 | patched: '2019-07-04T09:04:35.900Z' 796 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 797 | patched: '2019-07-04T09:04:35.900Z' 798 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > lodash: 799 | patched: '2019-07-04T09:04:35.900Z' 800 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 801 | patched: '2019-07-04T09:04:35.900Z' 802 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 803 | patched: '2019-07-04T09:04:35.900Z' 804 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > babel-types > lodash: 805 | patched: '2019-07-04T09:04:35.900Z' 806 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > babel-types > lodash: 807 | patched: '2019-07-04T09:04:35.900Z' 808 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-types > lodash: 809 | patched: '2019-07-04T09:04:35.900Z' 810 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > lodash: 811 | patched: '2019-07-04T09:04:35.900Z' 812 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-types > lodash: 813 | patched: '2019-07-04T09:04:35.900Z' 814 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-types > lodash: 815 | patched: '2019-07-04T09:04:35.900Z' 816 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > babel-types > lodash: 817 | patched: '2019-07-04T09:04:35.900Z' 818 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > babel-types > lodash: 819 | patched: '2019-07-04T09:04:35.900Z' 820 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-types > lodash: 821 | patched: '2019-07-04T09:04:35.900Z' 822 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-types > lodash: 823 | patched: '2019-07-04T09:04:35.900Z' 824 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > lodash: 825 | patched: '2019-07-04T09:04:35.900Z' 826 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-types > lodash: 827 | patched: '2019-07-04T09:04:35.900Z' 828 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > babel-types > lodash: 829 | patched: '2019-07-04T09:04:35.900Z' 830 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > babel-types > lodash: 831 | patched: '2019-07-04T09:04:35.900Z' 832 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-types > lodash: 833 | patched: '2019-07-04T09:04:35.900Z' 834 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-types > lodash: 835 | patched: '2019-07-04T09:04:35.900Z' 836 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-types > lodash: 837 | patched: '2019-07-04T09:04:35.900Z' 838 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 839 | patched: '2019-07-04T09:04:35.900Z' 840 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 841 | patched: '2019-07-04T09:04:35.900Z' 842 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 843 | patched: '2019-07-04T09:04:35.900Z' 844 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 845 | patched: '2019-07-04T09:04:35.900Z' 846 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 847 | patched: '2019-07-04T09:04:35.900Z' 848 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-template > babel-types > lodash: 849 | patched: '2019-07-04T09:04:35.900Z' 850 | - react-native > metro > babel-register > babel-core > babel-helpers > babel-template > lodash: 851 | patched: '2019-07-04T09:04:35.900Z' 852 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > babel-types > lodash: 853 | patched: '2019-07-04T09:04:35.900Z' 854 | - react-native > metro > babel-register > babel-core > babel-traverse > babel-types > lodash: 855 | patched: '2019-07-04T09:04:35.900Z' 856 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 857 | patched: '2019-07-04T09:04:35.900Z' 858 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 859 | patched: '2019-07-04T09:04:35.900Z' 860 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 861 | patched: '2019-07-04T09:04:35.900Z' 862 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 863 | patched: '2019-07-04T09:04:35.900Z' 864 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 865 | patched: '2019-07-04T09:04:35.900Z' 866 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 867 | patched: '2019-07-04T09:04:35.900Z' 868 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-traverse > babel-types > lodash: 869 | patched: '2019-07-04T09:04:35.900Z' 870 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-traverse > babel-types > lodash: 871 | patched: '2019-07-04T09:04:35.900Z' 872 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > babel-types > lodash: 873 | patched: '2019-07-04T09:04:35.900Z' 874 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > babel-types > lodash: 875 | patched: '2019-07-04T09:04:35.900Z' 876 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > babel-types > lodash: 877 | patched: '2019-07-04T09:04:35.900Z' 878 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > lodash: 879 | patched: '2019-07-04T09:04:35.900Z' 880 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-traverse > babel-types > lodash: 881 | patched: '2019-07-04T09:04:35.900Z' 882 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-traverse > babel-types > lodash: 883 | patched: '2019-07-04T09:04:35.900Z' 884 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > babel-types > lodash: 885 | patched: '2019-07-04T09:04:35.900Z' 886 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > babel-types > lodash: 887 | patched: '2019-07-04T09:04:35.900Z' 888 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > react-transform-hmr > react-proxy > lodash: 889 | patched: '2019-07-04T09:04:35.900Z' 890 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > babel-types > lodash: 891 | patched: '2019-07-04T09:04:35.900Z' 892 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-traverse > babel-types > lodash: 893 | patched: '2019-07-04T09:04:35.900Z' 894 | - react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > babel-types > lodash: 895 | patched: '2019-07-04T09:04:35.900Z' 896 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-template > babel-traverse > babel-types > lodash: 897 | patched: '2019-07-04T09:04:35.900Z' 898 | - react-native > babel-register > babel-core > babel-template > babel-traverse > babel-types > lodash: 899 | patched: '2019-07-04T09:04:35.900Z' 900 | - react-native > metro > babel-core > babel-template > babel-traverse > babel-types > lodash: 901 | patched: '2019-07-04T09:04:35.900Z' 902 | - react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 903 | patched: '2019-07-04T09:04:35.900Z' 904 | - react-native > fbjs-scripts > babel-core > babel-template > babel-traverse > babel-types > lodash: 905 | patched: '2019-07-04T09:04:35.900Z' 906 | - react-native > babel-core > babel-helpers > babel-template > babel-traverse > babel-types > lodash: 907 | patched: '2019-07-04T09:04:35.900Z' 908 | - react-native > metro > babel-preset-react-native > babel-template > babel-traverse > babel-types > lodash: 909 | patched: '2019-07-04T09:04:35.900Z' 910 | - expo > babel-preset-expo > babel-preset-react-native > babel-template > babel-traverse > babel-types > lodash: 911 | patched: '2019-07-04T09:04:35.900Z' 912 | - expo > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > babel-traverse > babel-types > lodash: 913 | patched: '2019-07-04T09:04:35.900Z' 914 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > lodash: 915 | patched: '2019-07-04T09:04:35.900Z' 916 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > babel-types > lodash: 917 | patched: '2019-07-04T09:04:35.900Z' 918 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-types > lodash: 919 | patched: '2019-07-04T09:04:35.900Z' 920 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-types > lodash: 921 | patched: '2019-07-04T09:04:35.900Z' 922 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-types > lodash: 923 | patched: '2019-07-04T09:04:35.900Z' 924 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-types > lodash: 925 | patched: '2019-07-04T09:04:35.900Z' 926 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-types > lodash: 927 | patched: '2019-07-04T09:04:35.900Z' 928 | - react-native > metro > @babel/plugin-transform-modules-commonjs > @babel/helper-module-transforms > @babel/helper-simple-access > @babel/template > @babel/types > lodash: 929 | patched: '2019-07-04T09:04:35.900Z' 930 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > lodash: 931 | patched: '2019-07-04T09:04:35.900Z' 932 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > lodash: 933 | patched: '2019-07-04T09:04:35.900Z' 934 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > lodash: 935 | patched: '2019-07-04T09:04:35.900Z' 936 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > lodash: 937 | patched: '2019-07-04T09:04:35.900Z' 938 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > lodash: 939 | patched: '2019-07-04T09:04:35.900Z' 940 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > lodash: 941 | patched: '2019-07-04T09:04:35.900Z' 942 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-types > lodash: 943 | patched: '2019-07-04T09:04:35.900Z' 944 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > babel-types > lodash: 945 | patched: '2019-07-04T09:04:35.900Z' 946 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > babel-types > lodash: 947 | patched: '2019-07-04T09:04:35.900Z' 948 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-types > lodash: 949 | patched: '2019-07-04T09:04:35.900Z' 950 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > babel-types > lodash: 951 | patched: '2019-07-04T09:04:35.900Z' 952 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > lodash: 953 | patched: '2019-07-04T09:04:35.900Z' 954 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 955 | patched: '2019-07-04T09:04:35.900Z' 956 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 957 | patched: '2019-07-04T09:04:35.900Z' 958 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 959 | patched: '2019-07-04T09:04:35.900Z' 960 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 961 | patched: '2019-07-04T09:04:35.900Z' 962 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-types > lodash: 963 | patched: '2019-07-04T09:04:35.900Z' 964 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 965 | patched: '2019-07-04T09:04:35.900Z' 966 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 967 | patched: '2019-07-04T09:04:35.900Z' 968 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 969 | patched: '2019-07-04T09:04:35.900Z' 970 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 971 | patched: '2019-07-04T09:04:35.900Z' 972 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-traverse > babel-types > lodash: 973 | patched: '2019-07-04T09:04:35.900Z' 974 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-types > lodash: 975 | patched: '2019-07-04T09:04:35.900Z' 976 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 977 | patched: '2019-07-04T09:04:35.900Z' 978 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 979 | patched: '2019-07-04T09:04:35.900Z' 980 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > lodash: 981 | patched: '2019-07-04T09:04:35.900Z' 982 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 983 | patched: '2019-07-04T09:04:35.900Z' 984 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > babel-types > lodash: 985 | patched: '2019-07-04T09:04:35.900Z' 986 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-plugin-transform-strict-mode > babel-types > lodash: 987 | patched: '2019-07-04T09:04:35.900Z' 988 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 989 | patched: '2019-07-04T09:04:35.900Z' 990 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 991 | patched: '2019-07-04T09:04:35.900Z' 992 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-types > lodash: 993 | patched: '2019-07-04T09:04:35.900Z' 994 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 995 | patched: '2019-07-04T09:04:35.900Z' 996 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 997 | patched: '2019-07-04T09:04:35.900Z' 998 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 999 | patched: '2019-07-04T09:04:35.900Z' 1000 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 1001 | patched: '2019-07-04T09:04:35.900Z' 1002 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 1003 | patched: '2019-07-04T09:04:35.900Z' 1004 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 1005 | patched: '2019-07-04T09:04:35.900Z' 1006 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 1007 | patched: '2019-07-04T09:04:35.900Z' 1008 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > lodash: 1009 | patched: '2019-07-04T09:04:35.900Z' 1010 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-traverse > babel-types > lodash: 1011 | patched: '2019-07-04T09:04:35.900Z' 1012 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 1013 | patched: '2019-07-04T09:04:35.900Z' 1014 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 1015 | patched: '2019-07-04T09:04:35.900Z' 1016 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 1017 | patched: '2019-07-04T09:04:35.900Z' 1018 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1019 | patched: '2019-07-04T09:04:35.900Z' 1020 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1021 | patched: '2019-07-04T09:04:35.900Z' 1022 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1023 | patched: '2019-07-04T09:04:35.900Z' 1024 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1025 | patched: '2019-07-04T09:04:35.900Z' 1026 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1027 | patched: '2019-07-04T09:04:35.900Z' 1028 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1029 | patched: '2019-07-04T09:04:35.900Z' 1030 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-types > lodash: 1031 | patched: '2019-07-04T09:04:35.900Z' 1032 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 1033 | patched: '2019-07-04T09:04:35.900Z' 1034 | - react-native > metro > babel-register > babel-core > babel-helpers > babel-template > babel-types > lodash: 1035 | patched: '2019-07-04T09:04:35.900Z' 1036 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-template > babel-traverse > babel-types > lodash: 1037 | patched: '2019-07-04T09:04:35.900Z' 1038 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > babel-types > lodash: 1039 | patched: '2019-07-04T09:04:35.900Z' 1040 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1041 | patched: '2019-07-04T09:04:35.900Z' 1042 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1043 | patched: '2019-07-04T09:04:35.900Z' 1044 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1045 | patched: '2019-07-04T09:04:35.900Z' 1046 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1047 | patched: '2019-07-04T09:04:35.900Z' 1048 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1049 | patched: '2019-07-04T09:04:35.900Z' 1050 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1051 | patched: '2019-07-04T09:04:35.900Z' 1052 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > lodash: 1053 | patched: '2019-07-04T09:04:35.900Z' 1054 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-traverse > babel-types > lodash: 1055 | patched: '2019-07-04T09:04:35.900Z' 1056 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-types > lodash: 1057 | patched: '2019-07-04T09:04:35.900Z' 1058 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-types > lodash: 1059 | patched: '2019-07-04T09:04:35.900Z' 1060 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-types > lodash: 1061 | patched: '2019-07-04T09:04:35.900Z' 1062 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 1063 | patched: '2019-07-04T09:04:35.900Z' 1064 | - react-native > fbjs-scripts > babel-core > babel-helpers > babel-template > babel-traverse > babel-types > lodash: 1065 | patched: '2019-07-04T09:04:35.900Z' 1066 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-types > lodash: 1067 | patched: '2019-07-04T09:04:35.900Z' 1068 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > lodash: 1069 | patched: '2019-07-04T09:04:35.900Z' 1070 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > lodash: 1071 | patched: '2019-07-04T09:04:35.900Z' 1072 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > lodash: 1073 | patched: '2019-07-04T09:04:35.900Z' 1074 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > lodash: 1075 | patched: '2019-07-04T09:04:35.900Z' 1076 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > lodash: 1077 | patched: '2019-07-04T09:04:35.900Z' 1078 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > lodash: 1079 | patched: '2019-07-04T09:04:35.900Z' 1080 | - react-native > metro > babel-core > babel-helpers > babel-template > babel-traverse > babel-types > lodash: 1081 | patched: '2019-07-04T09:04:35.900Z' 1082 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 1083 | patched: '2019-07-04T09:04:35.900Z' 1084 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 1085 | patched: '2019-07-04T09:04:35.900Z' 1086 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-react-jsx > babel-helper-builder-react-jsx > babel-types > lodash: 1087 | patched: '2019-07-04T09:04:35.900Z' 1088 | - react-native > babel-register > babel-core > babel-helpers > babel-template > babel-traverse > babel-types > lodash: 1089 | patched: '2019-07-04T09:04:35.900Z' 1090 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > lodash: 1091 | patched: '2019-07-04T09:04:35.900Z' 1092 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 1093 | patched: '2019-07-04T09:04:35.900Z' 1094 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 1095 | patched: '2019-07-04T09:04:35.900Z' 1096 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1097 | patched: '2019-07-04T09:04:35.900Z' 1098 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1099 | patched: '2019-07-04T09:04:35.900Z' 1100 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-regenerator > regenerator-transform > babel-types > lodash: 1101 | patched: '2019-07-04T09:04:35.900Z' 1102 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1103 | patched: '2019-07-04T09:04:35.900Z' 1104 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1105 | patched: '2019-07-04T09:04:35.900Z' 1106 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1107 | patched: '2019-07-04T09:04:35.900Z' 1108 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 1109 | patched: '2019-07-04T09:04:35.900Z' 1110 | - react-native > metro > babel-register > babel-core > babel-template > babel-traverse > babel-types > lodash: 1111 | patched: '2019-07-04T09:04:35.900Z' 1112 | - react-native > babel-plugin-transform-async-to-generator > babel-helper-remap-async-to-generator > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1113 | patched: '2019-07-04T09:04:35.900Z' 1114 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-decorators-legacy > babel-template > babel-traverse > babel-types > lodash: 1115 | patched: '2019-07-04T09:04:35.900Z' 1116 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > babel-types > lodash: 1117 | patched: '2019-07-04T09:04:35.900Z' 1118 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > babel-types > lodash: 1119 | patched: '2019-07-04T09:04:35.900Z' 1120 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 1121 | patched: '2019-07-04T09:04:35.900Z' 1122 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1123 | patched: '2019-07-04T09:04:35.900Z' 1124 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1125 | patched: '2019-07-04T09:04:35.900Z' 1126 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1127 | patched: '2019-07-04T09:04:35.900Z' 1128 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1129 | patched: '2019-07-04T09:04:35.900Z' 1130 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > lodash: 1131 | patched: '2019-07-04T09:04:35.900Z' 1132 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1133 | patched: '2019-07-04T09:04:35.900Z' 1134 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 1135 | patched: '2019-07-04T09:04:35.900Z' 1136 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1137 | patched: '2019-07-04T09:04:35.900Z' 1138 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1139 | patched: '2019-07-04T09:04:35.900Z' 1140 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1141 | patched: '2019-07-04T09:04:35.900Z' 1142 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1143 | patched: '2019-07-04T09:04:35.900Z' 1144 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 1145 | patched: '2019-07-04T09:04:35.900Z' 1146 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 1147 | patched: '2019-07-04T09:04:35.900Z' 1148 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 1149 | patched: '2019-07-04T09:04:35.900Z' 1150 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 1151 | patched: '2019-07-04T09:04:35.900Z' 1152 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1153 | patched: '2019-07-04T09:04:35.900Z' 1154 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1155 | patched: '2019-07-04T09:04:35.900Z' 1156 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 1157 | patched: '2019-07-04T09:04:35.900Z' 1158 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-get-function-arity > babel-types > lodash: 1159 | patched: '2019-07-04T09:04:35.900Z' 1160 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 1161 | patched: '2019-07-04T09:04:35.900Z' 1162 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 1163 | patched: '2019-07-04T09:04:35.900Z' 1164 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > lodash: 1165 | patched: '2019-07-04T09:04:35.900Z' 1166 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > lodash: 1167 | patched: '2019-07-04T09:04:35.900Z' 1168 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > lodash: 1169 | patched: '2019-07-04T09:04:35.900Z' 1170 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > lodash: 1171 | patched: '2019-07-04T09:04:35.900Z' 1172 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > lodash: 1173 | patched: '2019-07-04T09:04:35.900Z' 1174 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > babel-types > lodash: 1175 | patched: '2019-07-04T09:04:35.900Z' 1176 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1177 | patched: '2019-07-04T09:04:35.900Z' 1178 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1179 | patched: '2019-07-04T09:04:35.900Z' 1180 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1181 | patched: '2019-07-04T09:04:35.900Z' 1182 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1183 | patched: '2019-07-04T09:04:35.900Z' 1184 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1185 | patched: '2019-07-04T09:04:35.900Z' 1186 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1187 | patched: '2019-07-04T09:04:35.900Z' 1188 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > babel-types > lodash: 1189 | patched: '2019-07-04T09:04:35.900Z' 1190 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > lodash: 1191 | patched: '2019-07-04T09:04:35.900Z' 1192 | - expo > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > babel-types > lodash: 1193 | patched: '2019-07-04T09:04:35.900Z' 1194 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > babel-types > lodash: 1195 | patched: '2019-07-04T09:04:35.900Z' 1196 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-types > lodash: 1197 | patched: '2019-07-04T09:04:35.900Z' 1198 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > babel-types > lodash: 1199 | patched: '2019-07-04T09:04:35.900Z' 1200 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 1201 | patched: '2019-07-04T09:04:35.900Z' 1202 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 1203 | patched: '2019-07-04T09:04:35.900Z' 1204 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > lodash: 1205 | patched: '2019-07-04T09:04:35.900Z' 1206 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 1207 | patched: '2019-07-04T09:04:35.900Z' 1208 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-types > lodash: 1209 | patched: '2019-07-04T09:04:35.900Z' 1210 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-types > lodash: 1211 | patched: '2019-07-04T09:04:35.900Z' 1212 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-types > lodash: 1213 | patched: '2019-07-04T09:04:35.900Z' 1214 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-types > lodash: 1215 | patched: '2019-07-04T09:04:35.900Z' 1216 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1217 | patched: '2019-07-04T09:04:35.900Z' 1218 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1219 | patched: '2019-07-04T09:04:35.900Z' 1220 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1221 | patched: '2019-07-04T09:04:35.900Z' 1222 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1223 | patched: '2019-07-04T09:04:35.900Z' 1224 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1225 | patched: '2019-07-04T09:04:35.900Z' 1226 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1227 | patched: '2019-07-04T09:04:35.900Z' 1228 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1229 | patched: '2019-07-04T09:04:35.900Z' 1230 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > lodash: 1231 | patched: '2019-07-04T09:04:35.900Z' 1232 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-types > lodash: 1233 | patched: '2019-07-04T09:04:35.900Z' 1234 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-types > lodash: 1235 | patched: '2019-07-04T09:04:35.900Z' 1236 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-types > lodash: 1237 | patched: '2019-07-04T09:04:35.900Z' 1238 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-types > lodash: 1239 | patched: '2019-07-04T09:04:35.900Z' 1240 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-types > lodash: 1241 | patched: '2019-07-04T09:04:35.900Z' 1242 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > lodash: 1243 | patched: '2019-07-04T09:04:35.900Z' 1244 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-types > lodash: 1245 | patched: '2019-07-04T09:04:35.900Z' 1246 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-types > lodash: 1247 | patched: '2019-07-04T09:04:35.900Z' 1248 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 1249 | patched: '2019-07-04T09:04:35.900Z' 1250 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1251 | patched: '2019-07-04T09:04:35.900Z' 1252 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1253 | patched: '2019-07-04T09:04:35.900Z' 1254 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > lodash: 1255 | patched: '2019-07-04T09:04:35.900Z' 1256 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-types > lodash: 1257 | patched: '2019-07-04T09:04:35.900Z' 1258 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1259 | patched: '2019-07-04T09:04:35.900Z' 1260 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1261 | patched: '2019-07-04T09:04:35.900Z' 1262 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1263 | patched: '2019-07-04T09:04:35.900Z' 1264 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1265 | patched: '2019-07-04T09:04:35.900Z' 1266 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 1267 | patched: '2019-07-04T09:04:35.900Z' 1268 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > lodash: 1269 | patched: '2019-07-04T09:04:35.900Z' 1270 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-types > lodash: 1271 | patched: '2019-07-04T09:04:35.900Z' 1272 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > babel-types > lodash: 1273 | patched: '2019-07-04T09:04:35.900Z' 1274 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > babel-types > lodash: 1275 | patched: '2019-07-04T09:04:35.900Z' 1276 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > babel-types > lodash: 1277 | patched: '2019-07-04T09:04:35.900Z' 1278 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > babel-types > lodash: 1279 | patched: '2019-07-04T09:04:35.900Z' 1280 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > babel-types > lodash: 1281 | patched: '2019-07-04T09:04:35.900Z' 1282 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > babel-types > lodash: 1283 | patched: '2019-07-04T09:04:35.900Z' 1284 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-types > lodash: 1285 | patched: '2019-07-04T09:04:35.900Z' 1286 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-types > lodash: 1287 | patched: '2019-07-04T09:04:35.900Z' 1288 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > babel-types > lodash: 1289 | patched: '2019-07-04T09:04:35.900Z' 1290 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 1291 | patched: '2019-07-04T09:04:35.900Z' 1292 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > babel-types > lodash: 1293 | patched: '2019-07-04T09:04:35.900Z' 1294 | - react-native > metro > babel-register > babel-core > babel-helpers > babel-template > babel-traverse > lodash: 1295 | patched: '2019-07-04T09:04:35.900Z' 1296 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > babel-types > lodash: 1297 | patched: '2019-07-04T09:04:35.900Z' 1298 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > babel-types > lodash: 1299 | patched: '2019-07-04T09:04:35.900Z' 1300 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1301 | patched: '2019-07-04T09:04:35.900Z' 1302 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1303 | patched: '2019-07-04T09:04:35.900Z' 1304 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1305 | patched: '2019-07-04T09:04:35.900Z' 1306 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1307 | patched: '2019-07-04T09:04:35.900Z' 1308 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1309 | patched: '2019-07-04T09:04:35.900Z' 1310 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1311 | patched: '2019-07-04T09:04:35.900Z' 1312 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > lodash: 1313 | patched: '2019-07-04T09:04:35.900Z' 1314 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > lodash: 1315 | patched: '2019-07-04T09:04:35.900Z' 1316 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > lodash: 1317 | patched: '2019-07-04T09:04:35.900Z' 1318 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1319 | patched: '2019-07-04T09:04:35.900Z' 1320 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-optimise-call-expression > babel-types > lodash: 1321 | patched: '2019-07-04T09:04:35.900Z' 1322 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1323 | patched: '2019-07-04T09:04:35.900Z' 1324 | - react-native > metro > @babel/core > @babel/helpers > @babel/traverse > @babel/helper-function-name > @babel/helper-get-function-arity > @babel/types > lodash: 1325 | patched: '2019-07-04T09:04:35.900Z' 1326 | - react-native > metro > babel-preset-es2015-node > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1327 | patched: '2019-07-04T09:04:35.900Z' 1328 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-template > babel-traverse > babel-types > lodash: 1329 | patched: '2019-07-04T09:04:35.900Z' 1330 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1331 | patched: '2019-07-04T09:04:35.900Z' 1332 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-block-scoping > babel-template > babel-traverse > babel-types > lodash: 1333 | patched: '2019-07-04T09:04:35.900Z' 1334 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1335 | patched: '2019-07-04T09:04:35.900Z' 1336 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1337 | patched: '2019-07-04T09:04:35.900Z' 1338 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1339 | patched: '2019-07-04T09:04:35.900Z' 1340 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1341 | patched: '2019-07-04T09:04:35.900Z' 1342 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1343 | patched: '2019-07-04T09:04:35.900Z' 1344 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1345 | patched: '2019-07-04T09:04:35.900Z' 1346 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1347 | patched: '2019-07-04T09:04:35.900Z' 1348 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1349 | patched: '2019-07-04T09:04:35.900Z' 1350 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1351 | patched: '2019-07-04T09:04:35.900Z' 1352 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1353 | patched: '2019-07-04T09:04:35.900Z' 1354 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1355 | patched: '2019-07-04T09:04:35.900Z' 1356 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1357 | patched: '2019-07-04T09:04:35.900Z' 1358 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > lodash: 1359 | patched: '2019-07-04T09:04:35.900Z' 1360 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1361 | patched: '2019-07-04T09:04:35.900Z' 1362 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > lodash: 1363 | patched: '2019-07-04T09:04:35.900Z' 1364 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > lodash: 1365 | patched: '2019-07-04T09:04:35.900Z' 1366 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > lodash: 1367 | patched: '2019-07-04T09:04:35.900Z' 1368 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > lodash: 1369 | patched: '2019-07-04T09:04:35.900Z' 1370 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > lodash: 1371 | patched: '2019-07-04T09:04:35.900Z' 1372 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > lodash: 1373 | patched: '2019-07-04T09:04:35.900Z' 1374 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > lodash: 1375 | patched: '2019-07-04T09:04:35.900Z' 1376 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > lodash: 1377 | patched: '2019-07-04T09:04:35.900Z' 1378 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > lodash: 1379 | patched: '2019-07-04T09:04:35.900Z' 1380 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > lodash: 1381 | patched: '2019-07-04T09:04:35.900Z' 1382 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1383 | patched: '2019-07-04T09:04:35.900Z' 1384 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1385 | patched: '2019-07-04T09:04:35.900Z' 1386 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > lodash: 1387 | patched: '2019-07-04T09:04:35.900Z' 1388 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1389 | patched: '2019-07-04T09:04:35.900Z' 1390 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1391 | patched: '2019-07-04T09:04:35.900Z' 1392 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-helper-hoist-variables > babel-types > lodash: 1393 | patched: '2019-07-04T09:04:35.900Z' 1394 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-helper-optimise-call-expression > babel-types > lodash: 1395 | patched: '2019-07-04T09:04:35.900Z' 1396 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-types > lodash: 1397 | patched: '2019-07-04T09:04:35.900Z' 1398 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1399 | patched: '2019-07-04T09:04:35.900Z' 1400 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1401 | patched: '2019-07-04T09:04:35.900Z' 1402 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1403 | patched: '2019-07-04T09:04:35.900Z' 1404 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1405 | patched: '2019-07-04T09:04:35.900Z' 1406 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1407 | patched: '2019-07-04T09:04:35.900Z' 1408 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1409 | patched: '2019-07-04T09:04:35.900Z' 1410 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-object-super > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1411 | patched: '2019-07-04T09:04:35.900Z' 1412 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1413 | patched: '2019-07-04T09:04:35.900Z' 1414 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-types > lodash: 1415 | patched: '2019-07-04T09:04:35.900Z' 1416 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-types > lodash: 1417 | patched: '2019-07-04T09:04:35.900Z' 1418 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-types > lodash: 1419 | patched: '2019-07-04T09:04:35.900Z' 1420 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-types > lodash: 1421 | patched: '2019-07-04T09:04:35.900Z' 1422 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-types > lodash: 1423 | patched: '2019-07-04T09:04:35.900Z' 1424 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-types > lodash: 1425 | patched: '2019-07-04T09:04:35.900Z' 1426 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-types > lodash: 1427 | patched: '2019-07-04T09:04:35.900Z' 1428 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-types > lodash: 1429 | patched: '2019-07-04T09:04:35.900Z' 1430 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-types > lodash: 1431 | patched: '2019-07-04T09:04:35.900Z' 1432 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-template > babel-traverse > babel-types > lodash: 1433 | patched: '2019-07-04T09:04:35.900Z' 1434 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-types > lodash: 1435 | patched: '2019-07-04T09:04:35.900Z' 1436 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-helper-call-delegate > babel-traverse > babel-types > lodash: 1437 | patched: '2019-07-04T09:04:35.900Z' 1438 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-traverse > babel-types > lodash: 1439 | patched: '2019-07-04T09:04:35.900Z' 1440 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-traverse > babel-types > lodash: 1441 | patched: '2019-07-04T09:04:35.900Z' 1442 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-traverse > babel-types > lodash: 1443 | patched: '2019-07-04T09:04:35.900Z' 1444 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > babel-types > lodash: 1445 | patched: '2019-07-04T09:04:35.900Z' 1446 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > babel-types > lodash: 1447 | patched: '2019-07-04T09:04:35.900Z' 1448 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > babel-types > lodash: 1449 | patched: '2019-07-04T09:04:35.900Z' 1450 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1451 | patched: '2019-07-04T09:04:35.900Z' 1452 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > babel-types > lodash: 1453 | patched: '2019-07-04T09:04:35.900Z' 1454 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > babel-types > lodash: 1455 | patched: '2019-07-04T09:04:35.900Z' 1456 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-computed-properties > babel-template > babel-traverse > babel-types > lodash: 1457 | patched: '2019-07-04T09:04:35.900Z' 1458 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-traverse > babel-types > lodash: 1459 | patched: '2019-07-04T09:04:35.900Z' 1460 | - expo > expo-print > babel-preset-expo > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > babel-types > lodash: 1461 | patched: '2019-07-04T09:04:35.900Z' 1462 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > babel-types > lodash: 1463 | patched: '2019-07-04T09:04:35.900Z' 1464 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > babel-types > lodash: 1465 | patched: '2019-07-04T09:04:35.900Z' 1466 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-modules-commonjs > babel-template > babel-traverse > babel-types > lodash: 1467 | patched: '2019-07-04T09:04:35.900Z' 1468 | - react-native > metro > babel-register > babel-core > babel-helpers > babel-template > babel-traverse > babel-types > lodash: 1469 | patched: '2019-07-04T09:04:35.900Z' 1470 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-parameters > babel-template > babel-traverse > babel-types > lodash: 1471 | patched: '2019-07-04T09:04:35.900Z' 1472 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1473 | patched: '2019-07-04T09:04:35.900Z' 1474 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1475 | patched: '2019-07-04T09:04:35.900Z' 1476 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-exponentiation-operator > babel-helper-builder-binary-assignment-operator-visitor > babel-helper-explode-assignable-expression > babel-traverse > babel-types > lodash: 1477 | patched: '2019-07-04T09:04:35.900Z' 1478 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-types > lodash: 1479 | patched: '2019-07-04T09:04:35.900Z' 1480 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-helper-get-function-arity > babel-types > lodash: 1481 | patched: '2019-07-04T09:04:35.900Z' 1482 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > lodash: 1483 | patched: '2019-07-04T09:04:35.900Z' 1484 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-function-name > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1485 | patched: '2019-07-04T09:04:35.900Z' 1486 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1487 | patched: '2019-07-04T09:04:35.900Z' 1488 | - react-native > metro > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1489 | patched: '2019-07-04T09:04:35.900Z' 1490 | - react-native > fbjs-scripts > babel-preset-fbjs > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1491 | patched: '2019-07-04T09:04:35.900Z' 1492 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-traverse > babel-types > lodash: 1493 | patched: '2019-07-04T09:04:35.900Z' 1494 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-class-properties > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1495 | patched: '2019-07-04T09:04:35.900Z' 1496 | - react-native > metro > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1497 | patched: '2019-07-04T09:04:35.900Z' 1498 | - expo > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1499 | patched: '2019-07-04T09:04:35.900Z' 1500 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-replace-supers > babel-template > babel-traverse > babel-types > lodash: 1501 | patched: '2019-07-04T09:04:35.900Z' 1502 | - react-native > metro > @babel/plugin-transform-exponentiation-operator > @babel/helper-builder-binary-assignment-operator-visitor > @babel/helper-explode-assignable-expression > @babel/traverse > @babel/helper-function-name > @babel/helper-get-function-arity > @babel/types > lodash: 1503 | patched: '2019-07-04T09:04:35.900Z' 1504 | - expo > react-native-maps > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1505 | patched: '2019-07-04T09:04:35.900Z' 1506 | - expo > expo-print > babel-preset-expo > babel-preset-react-native > babel-plugin-transform-es2015-classes > babel-helper-define-map > babel-helper-function-name > babel-template > babel-traverse > babel-types > lodash: 1507 | patched: '2019-07-04T09:04:35.900Z' 1508 | - snyk > lodash: 1509 | patched: '2019-07-11T07:29:48.816Z' 1510 | - snyk > snyk-nodejs-lockfile-parser > lodash: 1511 | patched: '2019-07-11T07:29:48.816Z' 1512 | - snyk > snyk-config > lodash: 1513 | patched: '2019-07-11T07:29:48.816Z' 1514 | - snyk > inquirer > lodash: 1515 | patched: '2019-07-11T07:29:48.816Z' 1516 | - snyk > snyk-nuget-plugin > lodash: 1517 | patched: '2019-07-11T07:29:48.816Z' 1518 | - snyk > @snyk/dep-graph > lodash: 1519 | patched: '2019-07-11T07:29:48.816Z' 1520 | - snyk > snyk-nodejs-lockfile-parser > graphlib > lodash: 1521 | patched: '2019-07-11T07:29:48.816Z' 1522 | - snyk > snyk-go-plugin > graphlib > lodash: 1523 | patched: '2019-07-11T07:29:48.816Z' 1524 | - snyk > @snyk/dep-graph > graphlib > lodash: 1525 | patched: '2019-07-11T07:29:48.816Z' 1526 | - snyk > @snyk/snyk-cocoapods-plugin > @snyk/dep-graph > lodash: 1527 | patched: '2020-02-28T14:19:26.182Z' 1528 | - snyk > snyk-nuget-plugin > dotnet-deps-parser > lodash: 1529 | patched: '2020-02-28T14:19:26.182Z' 1530 | - snyk > @snyk/snyk-cocoapods-plugin > @snyk/cocoapods-lockfile-parser > @snyk/dep-graph > lodash: 1531 | patched: '2020-02-28T14:19:26.182Z' 1532 | -------------------------------------------------------------------------------- /Sample/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Sample/App.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import React from 'react' 4 | import SegmentedView from './SegmentedView' 5 | 6 | export default function App() { 7 | return ( 8 | 9 | ) 10 | } 11 | -------------------------------------------------------------------------------- /Sample/SegmentedView.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | import React, { Component } from 'react' 3 | import { 4 | StyleSheet, 5 | Text, 6 | View, 7 | } from 'react-native' 8 | import SegmentedControlTab from 'react-native-segmented-control-tab' 9 | 10 | class SegmentedView extends Component<*, *> { 11 | constructor() { 12 | super() 13 | this.state = { 14 | selectedIndex: 0, 15 | selectedIndices: [0], 16 | customStyleIndex: 0, 17 | } 18 | } 19 | 20 | handleSingleIndexSelect = (index: number) => { 21 | this.setState(prevState => ({ ...prevState, selectedIndex: index })) 22 | } 23 | 24 | handleMultipleIndexSelect = (index: number) => { 25 | const { selectedIndices } = this.state 26 | 27 | if (selectedIndices.includes(index)) { 28 | this.setState(prevState => ({ 29 | ...prevState, 30 | selectedIndices: selectedIndices.filter((i) => i !== index), 31 | })) 32 | } else { 33 | this.setState(prevState => ({ 34 | ...prevState, 35 | selectedIndices: [ 36 | ...selectedIndices, 37 | index, 38 | ], 39 | })) 40 | } 41 | } 42 | 43 | handleCustomIndexSelect = (index: number) => { 44 | this.setState(prevState => ({ ...prevState, customStyleIndex: index })) 45 | } 46 | 47 | render() { 48 | const { selectedIndex, selectedIndices, customStyleIndex } = this.state 49 | return ( 50 | 51 | Default segmented control with single selection 52 | 58 | 59 | Default segmented control with multiple selection 60 | 65 | 66 | Default segmented with badges 67 | 72 | 73 | Custom segmented control with custom styles 74 | 85 | {customStyleIndex === 0 86 | && Tab one} 87 | {customStyleIndex === 1 88 | && Tab two} 89 | 90 | 91 | ) 92 | } 93 | } 94 | 95 | const styles = StyleSheet.create({ 96 | container: { 97 | flex: 1, 98 | justifyContent: 'center', 99 | alignItems: 'center', 100 | backgroundColor: 'white', 101 | padding: 10, 102 | }, 103 | tabViewText: { 104 | color: '#444444', 105 | fontWeight: 'bold', 106 | marginTop: 50, 107 | fontSize: 18, 108 | }, 109 | titleText: { 110 | color: '#444444', 111 | padding: 20, 112 | fontSize: 14, 113 | fontWeight: '500', 114 | }, 115 | headerText: { 116 | padding: 8, 117 | fontSize: 14, 118 | color: '#444444', 119 | }, 120 | tabContent: { 121 | color: '#444444', 122 | fontSize: 18, 123 | margin: 24, 124 | }, 125 | Seperator: { 126 | marginHorizontal: -10, 127 | alignSelf: 'stretch', 128 | borderTopWidth: 1, 129 | borderTopColor: '#888888', 130 | marginTop: 24, 131 | }, 132 | tabStyle: { 133 | borderColor: '#D52C43', 134 | }, 135 | activeTabStyle: { 136 | backgroundColor: '#D52C43', 137 | }, 138 | tabTextStyle: { 139 | color: '#D52C43', 140 | }, 141 | 142 | }) 143 | 144 | 145 | export default SegmentedView 146 | -------------------------------------------------------------------------------- /Sample/app.json: -------------------------------------------------------------------------------- 1 | { 2 | "expo": { 3 | "name": "example", 4 | "description": "This project is really great.", 5 | "slug": "example", 6 | "privacy": "public", 7 | "sdkVersion": "30.0.0", 8 | "platforms": ["ios", "android"], 9 | "version": "1.0.0", 10 | "orientation": "portrait", 11 | "icon": "./assets/icon.png", 12 | "splash": { 13 | "image": "./assets/splash.png", 14 | "resizeMode": "contain", 15 | "backgroundColor": "#ffffff" 16 | }, 17 | "updates": { 18 | "fallbackToCacheTimeout": 0 19 | }, 20 | "assetBundlePatterns": [ 21 | "**/*" 22 | ], 23 | "ios": { 24 | "supportsTablet": true 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /Sample/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirankalyan5/react-native-segmented-control-tab/42bfe4cfd5cc2271efb1b9d84cef0873b6628721/Sample/assets/icon.png -------------------------------------------------------------------------------- /Sample/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirankalyan5/react-native-segmented-control-tab/42bfe4cfd5cc2271efb1b9d84cef0873b6628721/Sample/assets/splash.png -------------------------------------------------------------------------------- /Sample/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "empty-project-template", 3 | "main": "node_modules/expo/AppEntry.js", 4 | "private": true, 5 | "scripts": { 6 | "start": "expo start", 7 | "android": "expo start --android", 8 | "ios": "expo start --ios", 9 | "eject": "expo eject", 10 | "snyk-protect": "snyk protect", 11 | "prepare": "npm run snyk-protect" 12 | }, 13 | "dependencies": { 14 | "expo": "^39.0.1", 15 | "react": "16.5.0", 16 | "react-native": "https://github.com/expo/react-native/archive/sdk-30.0.0.tar.gz", 17 | "react-native-segmented-control-tab": "^3.3.1", 18 | "snyk": "^1.465.0" 19 | }, 20 | "snyk": true 21 | } 22 | -------------------------------------------------------------------------------- /Sample/screenshots/screenshot_android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirankalyan5/react-native-segmented-control-tab/42bfe4cfd5cc2271efb1b9d84cef0873b6628721/Sample/screenshots/screenshot_android.png -------------------------------------------------------------------------------- /Sample/screenshots/screenshot_ios.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirankalyan5/react-native-segmented-control-tab/42bfe4cfd5cc2271efb1b9d84cef0873b6628721/Sample/screenshots/screenshot_ios.png -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { StyleProp, ViewStyle, TextStyle } from "react-native"; 3 | export interface SegmentedControlTabProperties extends React.Props { 4 | // Default ['One', 'Two', 'Three'] ; titles of tabs Default 5 | values?: Array 6 | // Default [0] ;index of tab item to be selected initially 7 | selectedIndex?: number 8 | // Default [0];Array of indices of tab items to be selected initially - when multiple prop is true else it will take selectedIndex 9 | selectedIndices?: Array 10 | // Default true; Boolean to enable or disable the component 11 | enabled?: boolean 12 | // Default false; Boolean which enables the multiple selection option 13 | multiple?: boolean 14 | // Default 5;borderRadius of whole tab 15 | borderRadius?: number 16 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the segmentedControl wrapper 17 | tabsContainerStyle?: StyleProp 18 | // Default default style opacity: 0.6;Custom style that can be passed when enable is set to false 19 | tabsContainerDisableStyle?: StyleProp 20 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the tabs 21 | tabStyle?: StyleProp 22 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the first tab 23 | firstTabStyle?: StyleProp 24 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the last tab 25 | lastTabStyle?: StyleProp 26 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the tab title 27 | tabTextStyle?: StyleProp 28 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the active tab 29 | activeTabStyle?: StyleProp 30 | // Default base styles added in SegmentedControlTab.js;external styles can be passed to override the default styles of the active tab text 31 | activeTabTextStyle?: StyleProp 32 | // Default [1, 2, 3];badges values to display 33 | badges?: Array 34 | // Default base styles added in SegmentedControlTab.js;external style can be passed to override the default style of the badge container 35 | tabBadgeContainerStyle?: StyleProp 36 | // Default base styles added in SegmentedControlTab.js;external style can be passed to override the default style of the active badge container 37 | activeTabBadgeContainerStyle?: StyleProp 38 | // Default base styles added in SegmentedControlTab.js;external style can be passed to override the default style of the badge text 39 | tabBadgeStyle?: StyleProp 40 | // Default base styles added in SegmentedControlTab.js;external style can be passed to override the default style of the active badge text 41 | activeTabBadgeStyle?: StyleProp 42 | // Default call-back function when a tab is selected 43 | onTabPress?: (index: number) => void 44 | // Default true;whether the segment & badge text should allow font scaling (default matches React Native default) 45 | allowFontScaling?: boolean 46 | // Default true;enables accessibility for each tab 47 | accessible?: boolean 48 | // Default ['Label 1', 'Label 2', 'Label 3'];Reads out the given text on each tab press when voice over is enabled. If not set, uses the text passed in as values in props as a fallback 49 | accessibilityLabels?: Array 50 | // Default ['testID 1', 'testID 2', 'testID 3'];Used for testing purposes to identify elements. If not set, uses the text passed in as values in props as a fallback 51 | testIDs?: Array 52 | // Default 1;Opacity value to customize tab press 53 | activeTabOpacity?: number 54 | 55 | } 56 | export default class ReactNativeSegmentedControlTab extends React.Component{ 57 | } 58 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-native-segmented-control-tab", 3 | "version": "4.0.0", 4 | "description": "A react native component with the same concept of react native's SegmantedControlIOS, Primarily built to support both IOS and Android.", 5 | "main": "src/SegmentedControlTab.js", 6 | "scripts": { 7 | "lint": "eslint src/**/*.js", 8 | "flow": "flow check", 9 | "test": "jest" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/kirankalyan5/react-native-segmented-control-tab.git" 14 | }, 15 | "keywords": [ 16 | "react-native", 17 | "custom", 18 | "component", 19 | "SegmentedControlIOS", 20 | "SegmentedControlTab", 21 | "IOS", 22 | "Android", 23 | "controlled SegmentedControlTab" 24 | ], 25 | "author": "Kiran Kalyan", 26 | "license": "MIT", 27 | "bugs": { 28 | "url": "https://github.com/kirankalyan5/react-native-segmented-control-tab/issues" 29 | }, 30 | "homepage": "https://github.com/kirankalyan5/react-native-segmented-control-tab#readme", 31 | "devDependencies": { 32 | "babel-cli": "^6.26.0", 33 | "babel-eslint": "^10.0.1", 34 | "babel-jest": "^23.6.0", 35 | "babel-preset-flow": "^6.23.0", 36 | "babel-preset-react-native": "^4.0.1", 37 | "eslint": "^5.7.0", 38 | "eslint-config-airbnb": "^17.1.0", 39 | "eslint-plugin-babel": "^5.2.1", 40 | "eslint-plugin-flowtype": "^3.0.0", 41 | "eslint-plugin-import": "^2.14.0", 42 | "eslint-plugin-jsx-a11y": "^6.1.2", 43 | "eslint-plugin-react": "^7.11.1", 44 | "flow-bin": "^0.124.0", 45 | "jest": "^23.6.0", 46 | "jest-react-native": "^18.0.0", 47 | "react": "16.6.0-alpha.8af6728", 48 | "react-native": "^0.57.2", 49 | "react-test-renderer": "^16.5.2" 50 | }, 51 | "jest": { 52 | "preset": "react-native", 53 | "coveragePathIgnorePatterns": [ 54 | "/node_modules/" 55 | ], 56 | "modulePathIgnorePatterns": [ 57 | "/Sample/" 58 | ] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/SegmentedControlTab.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | import React, { PureComponent } from 'react' 3 | import { 4 | View, StyleSheet, 5 | } from 'react-native' 6 | 7 | import type { 8 | ViewStyleProp, 9 | TextStyleProp, 10 | } from 'react-native/Libraries/StyleSheet/StyleSheet' 11 | 12 | import TabOption from './TabOption' 13 | 14 | type Props = { 15 | tabStyle: ViewStyleProp, 16 | firstTabStyle: ViewStyleProp, 17 | lastTabStyle: ViewStyleProp, 18 | activeTabStyle: ViewStyleProp, 19 | tabTextStyle: TextStyleProp, 20 | activeTabTextStyle: TextStyleProp, 21 | tabBadgeContainerStyle: TextStyleProp, 22 | activeTabBadgeContainerStyle: TextStyleProp, 23 | tabBadgeStyle: TextStyleProp, 24 | activeTabBadgeStyle: TextStyleProp, 25 | onTabPress: Function, 26 | textNumberOfLines: number, 27 | allowFontScaling: boolean, 28 | accessible: boolean, 29 | activeTabOpacity: number, 30 | enabled: boolean, 31 | values: string[], 32 | badges: string[], 33 | multiple: boolean, 34 | selectedIndex: number, 35 | selectedIndices: number[], 36 | tabsContainerStyle: ViewStyleProp, 37 | tabsContainerDisableStyle: ViewStyleProp, 38 | borderRadius: number, 39 | accessibilityLabels: string[], 40 | testIDs: string[], 41 | } 42 | 43 | const styles = StyleSheet.create({ 44 | tabsContainerStyle: { 45 | backgroundColor: 'transparent', 46 | flexDirection: 'row', 47 | }, 48 | tabStyle: { 49 | paddingVertical: 5, 50 | flex: 1, 51 | justifyContent: 'center', 52 | alignItems: 'center', 53 | borderColor: '#0076FF', 54 | borderWidth: 1, 55 | backgroundColor: 'white', 56 | }, 57 | }) 58 | const handleTabPress = ( 59 | index: number, 60 | multiple: boolean, 61 | selectedIndex: number, 62 | onTabPress: Function, 63 | ) => { 64 | if (multiple) { 65 | onTabPress(index) 66 | } else if (selectedIndex !== index) { 67 | onTabPress(index) 68 | } 69 | } 70 | 71 | const getAccessibilityLabelByIndex = ( 72 | accessibilityLabels: string[], 73 | index: number, 74 | ) => (accessibilityLabels 75 | && accessibilityLabels.length > 0 76 | && accessibilityLabels[index] 77 | ? accessibilityLabels[index] 78 | : undefined) 79 | 80 | const getTestIdByIndex = ( 81 | testIDs: string[], 82 | index: number, 83 | ) => (testIDs 84 | && testIDs.length > 0 85 | && testIDs[index] 86 | ? testIDs[index] 87 | : undefined) 88 | 89 | export default class SegmentedControlTab extends PureComponent { 90 | static defaultProps = { 91 | 92 | }; 93 | 94 | static defaultProps = { 95 | values: ['One', 'Two', 'Three'], 96 | accessible: true, 97 | accessibilityLabels: [], 98 | testIDs: [], 99 | badges: ['', '', ''], 100 | multiple: false, 101 | selectedIndex: 0, 102 | selectedIndices: [0], 103 | onTabPress: () => {}, 104 | tabsContainerStyle: {}, 105 | tabsContainerDisableStyle: { opacity: 0.6 }, 106 | tabStyle: {}, 107 | firstTabStyle: {}, 108 | lastTabStyle: {}, 109 | activeTabStyle: {}, 110 | tabTextStyle: {}, 111 | activeTabTextStyle: {}, 112 | tabBadgeContainerStyle: {}, 113 | activeTabBadgeContainerStyle: {}, 114 | tabBadgeStyle: {}, 115 | activeTabBadgeStyle: {}, 116 | borderRadius: 5, 117 | textNumberOfLines: 1, 118 | allowFontScaling: true, 119 | activeTabOpacity: 1, 120 | enabled: true, 121 | }; 122 | 123 | 124 | render() { 125 | const { 126 | multiple, 127 | selectedIndex, 128 | selectedIndices, 129 | values, 130 | badges, 131 | borderRadius, 132 | tabsContainerStyle, 133 | tabsContainerDisableStyle, 134 | tabStyle, 135 | firstTabStyle, 136 | lastTabStyle, 137 | activeTabStyle, 138 | tabTextStyle, 139 | activeTabTextStyle, 140 | tabBadgeContainerStyle, 141 | activeTabBadgeContainerStyle, 142 | tabBadgeStyle, 143 | activeTabBadgeStyle, 144 | onTabPress, 145 | textNumberOfLines, 146 | allowFontScaling, 147 | accessible, 148 | accessibilityLabels, 149 | testIDs, 150 | activeTabOpacity, 151 | enabled, 152 | } = this.props 153 | const firstTabStyleDefault = [ 154 | { 155 | borderRightWidth: values && values.length === 2 ? 1 : 0, 156 | borderTopLeftRadius: borderRadius, 157 | borderBottomLeftRadius: borderRadius, 158 | }, 159 | ] 160 | const lastTabStyleDefault = [ 161 | { 162 | borderLeftWidth: 0, 163 | borderTopRightRadius: borderRadius, 164 | borderBottomRightRadius: borderRadius, 165 | }, 166 | ] 167 | 168 | const tabsContainerStyles = [styles.tabsContainerStyle, tabsContainerStyle] 169 | if (!enabled) { 170 | tabsContainerStyles.push(tabsContainerDisableStyle) 171 | } 172 | return ( 173 | 174 | {values && values.map((item, index) => { 175 | const accessibilityText = getAccessibilityLabelByIndex( 176 | accessibilityLabels, 177 | index, 178 | ) 179 | const testID = getTestIdByIndex( 180 | testIDs, 181 | index, 182 | ) 183 | return ( 184 | handleTabPress(indexs, multiple, selectedIndex, onTabPress) 196 | } 197 | firstTabStyle={ 198 | index === 0 ? [{ borderRightWidth: 0 }, firstTabStyleDefault, firstTabStyle] : {} 199 | } 200 | lastTabStyle={ 201 | index === values.length - 1 202 | ? [{ borderLeftWidth: 0 }, lastTabStyleDefault, lastTabStyle] 203 | : {} 204 | } 205 | tabStyle={[ 206 | tabStyle, 207 | index !== 0 && index !== values.length - 1 208 | ? { marginLeft: -1 } 209 | : {}, 210 | ]} 211 | activeTabStyle={activeTabStyle} 212 | tabTextStyle={tabTextStyle} 213 | activeTabTextStyle={activeTabTextStyle} 214 | tabBadgeContainerStyle={tabBadgeContainerStyle} 215 | activeTabBadgeContainerStyle={activeTabBadgeContainerStyle} 216 | tabBadgeStyle={tabBadgeStyle} 217 | activeTabBadgeStyle={activeTabBadgeStyle} 218 | allowFontScaling={allowFontScaling} 219 | activeTabOpacity={activeTabOpacity} 220 | accessible={accessible} 221 | accessibilityLabel={accessibilityText || item} 222 | testID={testID || item} 223 | enabled={enabled} 224 | /> 225 | ) 226 | })} 227 | 228 | ) 229 | } 230 | } 231 | -------------------------------------------------------------------------------- /src/TabOption.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | 3 | import React, { PureComponent } from 'react' 4 | import { 5 | View, 6 | TouchableOpacity, 7 | StyleSheet, 8 | Text, 9 | } from 'react-native' 10 | 11 | 12 | import type { 13 | ViewStyleProp, 14 | TextStyleProp, 15 | } from 'react-native/Libraries/StyleSheet/StyleSheet' 16 | 17 | type Props = { 18 | isTabActive?: boolean, 19 | index?: number, 20 | badge?: any, 21 | text: string, 22 | firstTabStyle?: ViewStyleProp, 23 | lastTabStyle?: ViewStyleProp, 24 | tabStyle?: ViewStyleProp, 25 | activeTabStyle?: ViewStyleProp, 26 | tabTextStyle?: TextStyleProp, 27 | activeTabTextStyle?: TextStyleProp, 28 | tabBadgeContainerStyle?: TextStyleProp, 29 | activeTabBadgeContainerStyle?: TextStyleProp, 30 | tabBadgeStyle?: TextStyleProp, 31 | activeTabBadgeStyle?: TextStyleProp, 32 | onTabPress: Function, 33 | textNumberOfLines?: number, 34 | allowFontScaling?: boolean, 35 | accessible?: boolean, 36 | activeTabOpacity?: number, 37 | accessibilityLabel?: string, 38 | testID?: string; 39 | enabled?: boolean, 40 | } 41 | 42 | const styles = StyleSheet.create({ 43 | tabStyle: { 44 | paddingVertical: 5, 45 | flex: 1, 46 | justifyContent: 'center', 47 | alignItems: 'center', 48 | borderColor: '#0076FF', 49 | borderWidth: 1, 50 | backgroundColor: 'white', 51 | }, 52 | activeTabStyle: { 53 | backgroundColor: '#0076FF', 54 | }, 55 | tabTextStyle: { 56 | color: '#0076FF', 57 | }, 58 | activeTabTextStyle: { 59 | color: 'white', 60 | }, 61 | tabBadgeContainerStyle: { 62 | borderRadius: 20, 63 | backgroundColor: 'red', 64 | paddingLeft: 5, 65 | paddingRight: 5, 66 | marginLeft: 5, 67 | marginBottom: 3, 68 | }, 69 | activeTabBadgeContainerStyle: { 70 | backgroundColor: 'white', 71 | }, 72 | tabBadgeStyle: { 73 | color: 'white', 74 | fontSize: 11, 75 | fontWeight: 'bold', 76 | }, 77 | activeTabBadgeStyle: { 78 | color: 'black', 79 | }, 80 | }) 81 | 82 | export default class TabOption extends PureComponent { 83 | static defaultProps = { 84 | isTabActive: false, 85 | index: 0, 86 | badge: '', 87 | firstTabStyle: {}, 88 | lastTabStyle: {}, 89 | tabStyle: {}, 90 | activeTabStyle: {}, 91 | tabTextStyle: {}, 92 | activeTabTextStyle: {}, 93 | tabBadgeContainerStyle: {}, 94 | activeTabBadgeContainerStyle: {}, 95 | tabBadgeStyle: {}, 96 | activeTabBadgeStyle: {}, 97 | textNumberOfLines: 1, 98 | allowFontScaling: false, 99 | accessible: true, 100 | activeTabOpacity: 1, 101 | accessibilityLabel: '', 102 | testID: '', 103 | enabled: false, 104 | onTabPress: () => {}, 105 | }; 106 | 107 | render() { 108 | const { 109 | isTabActive, 110 | index, 111 | badge, 112 | text, 113 | firstTabStyle, 114 | lastTabStyle, 115 | tabStyle, 116 | activeTabStyle, 117 | tabTextStyle, 118 | activeTabTextStyle, 119 | tabBadgeContainerStyle, 120 | activeTabBadgeContainerStyle, 121 | tabBadgeStyle, 122 | activeTabBadgeStyle, 123 | onTabPress, 124 | textNumberOfLines, 125 | allowFontScaling, 126 | accessible, 127 | activeTabOpacity, 128 | accessibilityLabel, 129 | testID, 130 | enabled, 131 | } = this.props 132 | return ( 133 | onTabPress(index)} 147 | disabled={!enabled} 148 | activeOpacity={activeTabOpacity} 149 | > 150 | 151 | 163 | {text} 164 | 165 | {Boolean(badge) && ( 166 | 178 | 188 | {badge} 189 | 190 | 191 | )} 192 | 193 | 194 | ) 195 | } 196 | } 197 | -------------------------------------------------------------------------------- /src/__tests__/SegmentedControlTab.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | import 'react-native' 3 | import React from 'react' 4 | import renderer from 'react-test-renderer' 5 | import SegmentedControlTab from '../SegmentedControlTab' 6 | 7 | jest.mock('../TabOption', () => 'TabOption') 8 | 9 | describe('', () => { 10 | it('should render default SegmentedControlTab', () => { 11 | const tree = renderer.create() 12 | expect(tree).toMatchSnapshot() 13 | }) 14 | }) 15 | -------------------------------------------------------------------------------- /src/__tests__/TabOption.js: -------------------------------------------------------------------------------- 1 | /* @flow */ 2 | import 'react-native' 3 | import React from 'react' 4 | import renderer from 'react-test-renderer' 5 | import TabOption from '../TabOption' 6 | 7 | describe('', () => { 8 | it('should render TabOption', () => { 9 | const tree = renderer.create().toJSON() 10 | expect(tree).toMatchSnapshot() 11 | }) 12 | }) 13 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/SegmentedControlTab.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[` should render default SegmentedControlTab 1`] = ` 4 | 16 | 59 | 90 | 133 | 134 | `; 135 | -------------------------------------------------------------------------------- /src/__tests__/__snapshots__/TabOption.js.snap: -------------------------------------------------------------------------------- 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP 2 | 3 | exports[` should render TabOption 1`] = ` 4 | 28 | 35 | 49 | Tab value 50 | 51 | 52 | 53 | `; 54 | --------------------------------------------------------------------------------