iptv-org/iptv · error · Error

numberParser:parse() Input value is not a number

Error message

numberParser:parse() Input value is not a number

What it means

Error "numberParser:parse() Input value is not a number" thrown in iptv-org/iptv.

Source

Thrown at scripts/core/numberParser.ts:5

export default class NumberParser {
  async parse(number: string) {
    const parsed = parseInt(number)
    if (isNaN(parsed)) {
      throw new Error('numberParser:parse() Input value is not a number')
    }

    return parsed
  }
}

View on GitHub (pinned to 897b7fe44b)

When it happens

Trigger: Thrown at scripts/core/numberParser.ts:5 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of iptv-org/iptv@897b7fe44b (2026-08-12). Data as JSON: /api/errors/0369f9fe15c0e4a7. Report an issue: GitHub.