Right so I am a beginner to web development and I came across this piece of code:
$('#tweet-quote').on('click', function() {
if(!inIframe()) {
openURL('https://twitter.com/intent/tweet?hashtags=quotes&related=freecodecamp&text=' + encodeURIComponent('"' + currentQuote + '" ' + currentAuthor));
}
});
I understand everything except this
inIframe()
what is this function? I cant find anything on this particular function.