compiler-discord/docker/javascript/run.sh

6 lines
90 B
Bash
Raw Normal View History

2019-03-12 10:09:46 +01:00
if [ "$EVAL_HARMONY" = "true" ]; then
node --harmony -p "$1"
2019-03-12 10:09:46 +01:00
else
node -p "$1"
2019-03-12 10:09:46 +01:00
fi