Move lib/pure/nodejs to compiler/nodejs. Ref #2017.

This commit is contained in:
Dominik Picheta
2015-01-28 14:58:31 +00:00
parent 190cc01f24
commit 6143393adb
2 changed files with 1 additions and 1 deletions

6
compiler/nodejs.nim Normal file
View File

@@ -0,0 +1,6 @@
import os
proc findNodeJs*(): string =
result = findExe("nodejs")
if result == "":
result = findExe("node")