diff options
author | Visa Kopu <visa@2general.com> | 2012-11-29 10:51:15 +0200 |
---|---|---|
committer | Visa Kopu <visa@2general.com> | 2012-11-29 10:51:15 +0200 |
commit | e48802ad291fae5a16f2d23cbd25a0c433cdbe48 (patch) | |
tree | 735e41175ad6639095643df9c2264e9602c4a0b9 /bin/uglifyjs | |
parent | 13c4dfcabdd3e8597db6ecb09e2ac95fbae19195 (diff) | |
download | tracifyjs-e48802ad291fae5a16f2d23cbd25a0c433cdbe48.tar.gz tracifyjs-e48802ad291fae5a16f2d23cbd25a0c433cdbe48.zip |
Fixed reading from STDIN.
Diffstat (limited to 'bin/uglifyjs')
-rwxr-xr-x | bin/uglifyjs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/uglifyjs b/bin/uglifyjs index 1706629c..d2fbdb18 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -335,9 +335,8 @@ function getOptions(x, constants) { function read_whole_file(filename) { if (filename == "-") { - // XXX: this sucks. How does one read the whole STDIN - // synchronously? - filename = "/dev/stdin"; + var size = fs.fstatSync(process.stdin.fd).size; + return size > 0 ? fs.readSync(process.stdin.fd, size)[0] : ""; } try { return fs.readFileSync(filename, "utf8"); |