about summary refs log blame commit diff stats
path: root/cpp/023transform
Not found
id='n4' href='#n4'>4 5 6 7 8
import os

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