I hereby claim:
- I am brunolemos on github.
- I am brunolemos (https://keybase.io/brunolemos) on keybase.
- I have a public key whose fingerprint is CCB7 2FCA 5650 3F50 EEB4 F796 0A8E 45A6 ACE6 6963
To claim this, I am signing this object:
| @withTest('myNewPropName') | |
| export default class App extends PureComponent... |
| # Xcode > Build Phases > Bundle React Native code and images | |
| export NODE_BINARY=node | |
| ./react-native-xcode.sh |
I hereby claim:
To claim this, I am signing this object:
| // usage: | |
| // export default debounce(100)(MyComponent); | |
| import React from 'react'; | |
| import debounce from 'lodash/debounce'; | |
| export default (interval, ...debounceArgs) => { | |
| if (typeof interval !== 'number' && interval > 0) { | |
| throw new Error('[debounce] Interval (ms) parameter not received.'); | |
| } |
| import React from 'react'; | |
| import { ListView } from 'react-native'; | |
| export default class extends React.PureComponent { | |
| constructor(props) { | |
| super(props); | |
| const { data, dataSource, rowHasChanged: _rowHasChanged } = props; | |
| this.state.data = data || []; |
| // === Arrays | |
| var [a, b] = [1, 2]; | |
| console.log(a, b); | |
| //=> 1 2 | |
| // Use from functions, only select from pattern | |
| var foo = () => [1, 2, 3]; |