Skip to content

Instantly share code, notes, and snippets.

var scope = angular.element(document.querySelector("ion-content")).scope()
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
import React, { Component } from 'react';
import {
StyleSheet,
View,
Modal,
ActivityIndicator
} from 'react-native';
const Loader = props => {
const {
import React, { Component } from 'react';
import {
StyleSheet,
View,
Text,
Dimensions
} from 'react-native';
import Button from 'MyButton';
import Loader from 'Loader';