one-liner-joke
Version:
A simple node module which provides one liner joke randomly and from specific category
37 lines (29 loc) • 1.14 kB
JavaScript
var oneLinerJoke = require('../index.js'); // in your code it should be "require('one-liner-joke');" without quote
/*
The variable getRandomJoke will contain a random joke with a format:
{"body":"Artificial intelligence is no match for natural stupidity.","tags":["intelligence","stupid"]}
*/
var getRandomJoke = oneLinerJoke.getRandomJoke();
console.log(getRandomJoke)
/*
One can add exclusion filter for the jokes tags
default is ['racist', 'dirty', 'sex']
*/
var getRandomJoke = oneLinerJoke.getRandomJoke({
'exclude_tags': ['dirty', 'racist', 'marriage']
});
console.log(getRandomJoke)
/*
The variable getRandomJoke will contain a random joke with a tag and with a format:
{"body":"Artificial intelligence is no match for natural stupidity.","tags":["intelligence","stupid"]}
*/
var getRandomJokeWithTag = oneLinerJoke.getRandomJokeWithTag('stupid');
console.log(getRandomJokeWithTag)
/*
One can add exclusion filter for the jokes tags
default is ['racist', 'dirty', 'sex']
*/
var getRandomJoke = oneLinerJoke.getRandomJokeWithTag('stupid', {
'exclude_tags': ['dirty', 'racist', 'marriage']
});
console.log(getRandomJoke)