Skip to content
This repository was archived by the owner on Nov 13, 2023. It is now read-only.

Commit e269355

Browse files
committed
add package lz-string
1 parent 8da2fe6 commit e269355

5 files changed

Lines changed: 459 additions & 0 deletions

File tree

scripts/lz-string/LICENSE

Whitespace-only changes.

scripts/lz-string/README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
lz-string
2+
=========
3+
LZ-based compression algorithm for JavaScript
4+
5+
This package is a fork and a modified version of the original 'lz-string' library, available in following websites:
6+
- [npm](https://www.npmjs.com/package/lz-string)
7+
- [Repository](https://github.com/pieroxy/lz-string)
8+
- [Homepage](http://pieroxy.net/blog/pages/lz-string/index.html)
9+
10+
[email protected] is created by Pieroxy, and is licensed under WTFPL and MIT.

scripts/lz-string/index.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export default LZString;
2+
declare namespace LZString {
3+
function compress(uncompressed: string): string;
4+
function decompress(compressed: string): string;
5+
}

0 commit comments

Comments
 (0)