Files
Nim/compiler/nodejs.nim
2015-01-28 14:58:31 +00:00

7 lines
117 B
Nim

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