Skip to content

Latest commit

 

History

History
51 lines (27 loc) · 495 Bytes

File metadata and controls

51 lines (27 loc) · 495 Bytes

clean up queries, like running web.contents ?

Example snippets

Let expression

    (_) as any =>
        x = Table.SelectRows(source, each [x] )
// to
    (_) as any =>
        let
            selection = 10
        in
            selection

convert to function expression

        cat = 30,
        zed = ...
// to
    cat = (_) => {selection},

    or
    cat = ($1 as ax) =>
        let
            $2 = 30
        in
            $2,


    or