ts-phonenumber - v2.0.0
    Preparing search index...

    Function isLengthValid

    • Check if a specific length is valid according to the bitmap.

      Parameters

      • bitmap: number

        The length bitmap

      • length: number

        The length to check

      Returns boolean

      True if the length is valid

      const bitmap = 896 // bits 7,8,9 set
      isLengthValid(bitmap, 8) // true
      isLengthValid(bitmap, 10) // false