summary refs log tree commit diff stats
path: root/compiler/nodejs.nim
blob: e2b79df19a63d66117069db185b2f6f1d0f55e4c (plain) (blame)
1
2
3
4
5
6
import os

proc findNodeJs*(): string =
  result = findExe("nodejs")
  if result == "":
    result = findExe("node")