summaryrefslogtreecommitdiff
path: root/src/node_modules/.bin/esparse.cmd
blob: ab1236ee4d804c11dc0fa35d6361acdefc4e209e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@ECHO off
SETLOCAL
CALL :find_dp0

IF EXIST "%dp0%\node.exe" (
  SET "_prog=%dp0%\node.exe"
) ELSE (
  SET "_prog=node"
  SET PATHEXT=%PATHEXT:;.JS;=;%
)

"%_prog%"  "%dp0%\..\esprima\bin\esparse.js" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b