is-subreddit icon indicating copy to clipboard operation
is-subreddit copied to clipboard

:aerial_tramway: a small npm module to tell you if a subreddit exists

is-subreddit

:aerial_tramway: a small npm module that tell you if a subreddit exists

getting started

$ npm install --save is-subreddit

usage

const check = require('is-subreddit')

check('xboxone');
//=> true

check('ThisIsDefNotASubreddit');
//=> false

api

check()

Type: <Function>

Returns a boolean (true if the subreddit exists, false if not).