diff options
author | Alex Lam S.L <alexlamsl@gmail.com> | 2017-05-31 03:38:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-31 03:38:00 +0800 |
commit | e9645e017f297e06506cc139922ff012fb763139 (patch) | |
tree | 0e2510c7a6aae20844829a6510ca6a2c6d95930d /bin | |
parent | 55b5f2a8aa90a69e523c0a53ca92fcef45e5b209 (diff) | |
download | tracifyjs-e9645e017f297e06506cc139922ff012fb763139.tar.gz tracifyjs-e9645e017f297e06506cc139922ff012fb763139.zip |
introduce `unsafe_Func` (#2033)
Separate flag for #203 functionality.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/uglifyjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/uglifyjs b/bin/uglifyjs index ef2020c5..f2aeb084 100755 --- a/bin/uglifyjs +++ b/bin/uglifyjs @@ -225,7 +225,7 @@ function run() { col = line.length; } if (line) { - var limit = 78; + var limit = 70; if (col > limit) { line = line.slice(col - limit); col = limit; |