@yookue/ts-lang-utils
    Preparing search index...

    Function isNumeric

    • Returns whether all the characters in the given text is numeric

      Parameters

      • Optionaltext: null | string

        the text to check

      Returns boolean

      whether all the characters in the given text is numeric

      David Hsing

      isNumeric(undefined);    // false
      isNumeric('abc123'); // false
      isNumeric('123456'); // true