mirror of
https://github.com/iptv-org/database.git
synced 2025-05-10 03:30:01 -04:00
Replace require() with import
This commit is contained in:
parent
67cc28a408
commit
ea14a63978
16 changed files with 93 additions and 74 deletions
15
scripts/schemes/regions.ts
Normal file
15
scripts/schemes/regions.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import Joi from 'joi'
|
||||
|
||||
export default {
|
||||
name: Joi.string()
|
||||
.regex(/^[\sA-Z\u00C0-\u00FF().,-]+$/i)
|
||||
.required(),
|
||||
code: Joi.string()
|
||||
.regex(/^[A-Z]{2,7}$/)
|
||||
.required(),
|
||||
countries: Joi.array().items(
|
||||
Joi.string()
|
||||
.regex(/^[A-Z]{2}$/)
|
||||
.required()
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue