You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fx/test.sh

10 lines
370 B
Bash

#!/usr/bin/env bash
set -euxo pipefail
readonly fx='node index.js'
echo '[{"greeting": "hello world"}]' | $fx
echo '{"key": "value"}' | $fx "x => x.key"
echo '[1, 2, 3, 4, 5]' | $fx "this.map(x => x * this.length)"
echo '[1, 2, 3, 4, 5]' | $fx "for (let i of this) if (i % 2 == 0) yield i"
echo '{"items": ["foo", "bar"]}' | $fx "this.items" "yield* this; yield 'baz'"