blob: abfe9b075266f14b0fa619db695a50fcedd95436 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
const check = require('./check')
check.performCheck('387', 'Spongebob Squarepants', 'tv').then(res => {
console.log(res)
})
check.performCheck('298618', 'The%20Flash', 'tv').then(res => {
console.log(res)
})
check.performCheck('298618', 'The Flash', 'tv').then(res => {
console.log(res)
})
check.performCheck('4607', 'Lost', 'tv').then(res => {
console.log(res)
})
check.performCheck('632357', 'The Unholy', 'movie').then(res => {
console.log(res)
})
|