diff options
author | Mihai Bazon <mihai@bazon.net> | 2012-08-22 21:28:59 +0300 |
---|---|---|
committer | Mihai Bazon <mihai@bazon.net> | 2012-08-22 21:28:59 +0300 |
commit | 95b18e54a4632cc06a4fb36fbf631c6b1d852892 (patch) | |
tree | 77a03b0153366d1bf8de704d6b39119517bb2d3e /lib/output.js | |
parent | 159a6f048cfabc6bdee0bb1274eeb0d6ab75b79a (diff) | |
download | tracifyjs-95b18e54a4632cc06a4fb36fbf631c6b1d852892.tar.gz tracifyjs-95b18e54a4632cc06a4fb36fbf631c6b1d852892.zip |
added license
Diffstat (limited to 'lib/output.js')
-rw-r--r-- | lib/output.js | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/output.js b/lib/output.js index 17a4197f..ae4a57c6 100644 --- a/lib/output.js +++ b/lib/output.js @@ -1,3 +1,46 @@ +/*********************************************************************** + + A JavaScript tokenizer / parser / beautifier / compressor. + https://github.com/mishoo/UglifyJS2 + + -------------------------------- (C) --------------------------------- + + Author: Mihai Bazon + <mihai.bazon@gmail.com> + http://mihai.bazon.net/blog + + Distributed under the BSD license: + + Copyright 2010 (c) Mihai Bazon <mihai.bazon@gmail.com> + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + + * Redistributions of source code must retain the above + copyright notice, this list of conditions and the following + disclaimer. + + * Redistributions in binary form must reproduce the above + copyright notice, this list of conditions and the following + disclaimer in the documentation and/or other materials + provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY + EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE + LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR + TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF + THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF + SUCH DAMAGE. + + ***********************************************************************/ + function OutputStream(options) { options = defaults(options, { |