source: trip-planner-front/node_modules/pako/lib/zlib/README

Last change on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 2.1 KB
RevLine 
[6a3a178]1Content of this folder follows zlib C sources as close as possible.
2That's intended to simplify maintainability and guarantee equal API
3and result.
4
5Key differences:
6
7- Everything is in JavaScript.
8- No platform-dependent blocks.
9- Some things like crc32 rewritten to keep size small and make JIT
10 work better.
11- Some code is different due missed features in JS (macros, pointers,
12 structures, header files)
13- Specific API methods are not implemented (see notes in root readme)
14
15This port is based on zlib 1.2.8.
16
17This port is under zlib license (see below) with contribution and addition of javascript
18port under expat license (see LICENSE at root of project)
19
20Copyright:
21(C) 1995-2013 Jean-loup Gailly and Mark Adler
22(C) 2014-2017 Vitaly Puzrin and Andrey Tupitsin
23
24
25From zlib's README
26=============================================================================
27
28Acknowledgments:
29
30 The deflate format used by zlib was defined by Phil Katz. The deflate and
31 zlib specifications were written by L. Peter Deutsch. Thanks to all the
32 people who reported problems and suggested various improvements in zlib; they
33 are too numerous to cite here.
34
35Copyright notice:
36
37 (C) 1995-2013 Jean-loup Gailly and Mark Adler
38
39Copyright (c) <''year''> <''copyright holders''>
40
41This software is provided 'as-is', without any express or implied
42warranty. In no event will the authors be held liable for any damages
43arising from the use of this software.
44
45Permission is granted to anyone to use this software for any purpose,
46including commercial applications, and to alter it and redistribute it
47freely, subject to the following restrictions:
48
491. The origin of this software must not be misrepresented; you must not
50 claim that you wrote the original software. If you use this software
51 in a product, an acknowledgment in the product documentation would be
52 appreciated but is not required.
532. Altered source versions must be plainly marked as such, and must not be
54 misrepresented as being the original software.
553. This notice may not be removed or altered from any source distribution.
56
57
58 Jean-loup Gailly Mark Adler
59 jloup@gzip.org madler@alumni.caltech.edu
Note: See TracBrowser for help on using the repository browser.