| Current Path : /home/emeraadmin/public_html/4d695/ |
| Current File : /home/emeraadmin/public_html/4d695/json2dsv.ps1.tar |
home/emeraadmin/public_html/node_modules/.bin/json2dsv.ps1 0000644 00000001000 15167726221 0017600 0 ustar 00 #!/usr/bin/env pwsh
$basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
$exe=""
if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
# Fix case when both the Windows and Linux builds of Node
# are installed in the same directory
$exe=".exe"
}
$ret=0
if (Test-Path "$basedir/node$exe") {
& "$basedir/node$exe" "$basedir/../d3-dsv/bin/json2dsv" $args
$ret=$LASTEXITCODE
} else {
& "node$exe" "$basedir/../d3-dsv/bin/json2dsv" $args
$ret=$LASTEXITCODE
}
exit $ret