mirror of https://github.com/iptv-org/iptv
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
477 B
TypeScript
32 lines
477 B
TypeScript
export class Dictionary {
|
|
dict: any
|
|
|
|
constructor(dict?: any) {
|
|
this.dict = dict || {}
|
|
}
|
|
|
|
set(key: string, value: any) {
|
|
this.dict[key] = value
|
|
}
|
|
|
|
has(key: string): boolean {
|
|
return !!this.dict[key]
|
|
}
|
|
|
|
missing(key: string): boolean {
|
|
return !this.dict[key]
|
|
}
|
|
|
|
get(key: string): any {
|
|
return this.dict[key] ? this.dict[key] : undefined
|
|
}
|
|
|
|
keys(): string[] {
|
|
return Object.keys(this.dict)
|
|
}
|
|
|
|
data() {
|
|
return this.dict
|
|
}
|
|
}
|