UNPKG
wikiquote-api
Version:
latest (0.2.0)
0.2.0
0.2.0-0
0.1.0
0.0.1
Small API for Wikiquote
gitlab.com/pinage404/wikiquote-api
wikiquote-api
/
src
/
checkLang.js
16 lines
(10 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
UnsupportedLanguageException
}
from
'./exception'
const
SUPPORTED_LANGUAGES
= [
'en'
,
'fr'
, ]
export
default
function
checkLang
(
lang=
'en'
) {
if
(!
SUPPORTED_LANGUAGES
.
includes
(lang)) {
throw
new
UnsupportedLanguageException
(lang) } }