Function strParseBoolean

  • Parses a string into a boolean.

    Parameters

    • string: string

      The string to parse into a boolean.

    Returns boolean

    Example

    strParseBoolean('True');
    //=> true
    strParseBoolean('False');
    //=> false

Generated using TypeDoc