hella
Version:
get hella stuff
56 lines (45 loc) • 1.15 kB
JavaScript
var Hella = {
animals: function() {
// should scrape and store a bunch of animals, or find a free api
return ['zebras', 'pumas', 'penguins', 'monkeys', 'hyenas', 'elk']
},
words: function() {
// scrape a dictionary
// what about other languages?
return ['a', 'the', 'an', 'and', 'sup', 'whatever']
},
demons: function() {
return [ 'Asmodeus', 'Astaroth', 'Azazel', 'Balaam', 'Behemoth', 'Beezlebub',
'Bile', 'Cimeries', 'Coyote', 'Damballa', 'Dagon', 'Mormo', 'Mictian' ]
},
pokemon: function() {
return [ 'Snorlax', 'Pikachu', 'Charmander', 'Bulbasaur', 'Psyduck', 'Squirtle' ]
},
numbers: function() {
// lol
var i = 0
var hellaNumbers = []
while (i < 99999) {
hellaNumbers.push(i)
i++
}
return hellaNumbers
},
countries: function() {
// list of countries
return 'hella todo'
},
cities: function() {
// use substack's 1000cities module
return 'hella todo'
},
gifs: function() {
// giphy api?
return 'hella todo'
},
memes: function() {
// know your meme?
return 'hella todo'
}
}
module.exports = Hella