remove some stuff that librejs threw "parsing error" on for unknown reason. hopefully we don't need it

This commit is contained in:
Hannes Mannerheim 2016-03-12 15:09:28 +01:00
parent 88d8a8c1af
commit f03904a1e3

View File

@ -1,11 +1,27 @@
// Copyright (c) 2013 Pieroxy <pieroxy@pieroxy.net> /*
// This work is free. You can redistribute it and/or modify it
// under the terms of the WTFPL, Version 2 @licstart The following is the entire license notice for the
// For more information see LICENSE.txt or http://www.wtfpl.net/ JavaScript code in this page.
//
// For more information, the home page: DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
// http://pieroxy.net/blog/pages/lz-string/testing.html Version 2, December 2004
//
Copyright (c) 2013 Pieroxy <pieroxy@pieroxy.net> http://pieroxy.net/blog/pages/lz-string/testing.html
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
@licend The above is the entire license notice
for the JavaScript code in this page.
*/
// LZ-based compression algorithm, version 1.4.4 // LZ-based compression algorithm, version 1.4.4
var LZString = (function() { var LZString = (function() {
@ -493,9 +509,3 @@ var LZString = {
}; };
return LZString; return LZString;
})(); })();
if (typeof define === 'function' && define.amd) {
define(function () { return LZString; });
} else if( typeof module !== 'undefined' && module != null ) {
module.exports = LZString
}