This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var scope = angular.element(document.querySelector("ion-content")).scope() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Fibber() { | |
this.memo = {}; | |
} | |
Fibber.prototype.fib = function(n) { | |
if (n < 0) { | |
throw new Error('Index was negative. No such thing as a negative index in a series.'); | |
// base cases |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
StyleSheet, | |
View, | |
Modal, | |
ActivityIndicator | |
} from 'react-native'; | |
const Loader = props => { | |
const { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
StyleSheet, | |
View, | |
Text, | |
Dimensions | |
} from 'react-native'; | |
import Button from 'MyButton'; | |
import Loader from 'Loader'; |