import * as firebase from 'firebase';
const config = {
apiKey: "XXXXXXXXXXXXX",
authDomain: "XXXXXXXXm",
databaseURL: "XXXXXXXXm",
projectId: "expXXXXXXXXXXXXXXX39",
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 delay () { | |
| return new Promise((res, rej) => { | |
| setTimeout(() => { | |
| rej(5); | |
| }, 3000) | |
| }) | |
| } | |
| const hof = (func) => { | |
| return func().catch((err) => { |
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
| conda create --name bunnies python=3.5 astroid babel | |
| activate bunnies | |
| //to get all env details | |
| conda info --envs |
OlderNewer