🚡 a small npm module that tell you if a subreddit exists
$ npm install --save is-subredditconst check = require('is-subreddit')
check('xboxone');
//=> true
check('ThisIsDefNotASubreddit');
//=> falseType: <Function>
Returns a boolean (true if the subreddit exists, false if not).