Function parseMediaQuery

  • creates an AST from a media-query string

    Parameters

    • str: string

    Returns QueryNode | ParserError

    Example

    console.log(parseMediaQuery(`screen and (monochrome)`));
    // {
    // _t: "query",
    // condition: {
    // _t: "condition",
    // op: "and",
    // nodes: [
    // {
    // _t: "in-parens",
    // node: { _t: "feature", context: "boolean", feature: "monochrome", start: 12, end: 21 },
    // },
    // ],
    // start: 11,
    // end: 22,
    // },
    // type: "screen",
    // start: 0,
    // end: 22,
    // }

Generated using TypeDoc