UNPKG

wikiquote-api

Version:

Small API for Wikiquote

16 lines (10 loc) 253 B
import { UnsupportedLanguageException } from './exception' const SUPPORTED_LANGUAGES = [ 'en', 'fr', ] export default function checkLang(lang='en') { if (!SUPPORTED_LANGUAGES.includes(lang)) { throw new UnsupportedLanguageException(lang) } }