Variable StringParsersConst

StringParsers: {
    parseBoolean: ((input?) => undefined | boolean);
} = ...

Type declaration

  • parseBoolean: ((input?) => undefined | boolean)

    Extract a boolean value from the given string.

    Param: input

    The boolean-string to parse.

    Returns

    the boolean value corresponding to the given string. If the given input is null, this methid resturns undefined.

      • (input?): undefined | boolean
      • Extract a boolean value from the given string.

        Parameters

        • Optional input: null | string

          The boolean-string to parse.

        Returns undefined | boolean

        the boolean value corresponding to the given string. If the given input is null, this methid resturns undefined.

Generated using TypeDoc