summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/pipeline/shell.js
blob: 1ee63dd18c3867d7f5a670f78eaa0bcd6a6f0d0c (plain)
1
2
3
4
5
6
7
8
9
function hasPipeline() {
    try {
        Function('a |> a');
    } catch (e) {
        return false;
    }

    return true;
}