UNPKG
xquery-cli
Version:
latest (2.1.2)
2.1.2
2.1.1
2.1.0
2.0.3
2.0.2
2.0.1
2.0.0
1.0.0
A command-line tool for XQuery
github.com/wvbe/xquery-cli
wvbe/xquery-cli
xquery-cli
/
bin
/
xq.js
13 lines
(10 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env node
const
{ startParentProcess, startChildProcess } =
require
(
'../dist'
);
if
(!process) {
throw
new
Error
(); }
if
(process.
send
) {
startChildProcess
(); }
else
{
startParentProcess
(process.
argv
.
splice
(
2
), __filename); }