2019-03-12 10:09:46 +01:00
|
|
|
if [ "$EVAL_HARMONY" = "true" ]; then
|
2019-06-01 07:21:22 +02:00
|
|
|
printf %s "$1" | node --harmony -p || true
|
2019-03-12 10:09:46 +01:00
|
|
|
else
|
2019-06-01 07:21:22 +02:00
|
|
|
printf %s "$1" | node -p || true
|
2019-03-12 10:09:46 +01:00
|
|
|
fi
|