GitXplorerGitXplorer
0

FireZIP.js

public
1 stars
0 forks
0 issues

Commits

List of commits on branch main.
Verified
ad36119ee9a3e4d1d488bccecaad861b9316f505

Create README.md

committed 3 years ago
Verified
8fccb48446296fac4ea62d2bba2e8de3197e78b3

Create index.js

committed 3 years ago

README

The README file for this repository.

FireZIP.js

const text = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore '

console.log('text:', text, ',', 'length:', text.length)
console.log('encoded:', FireZIP.encode(text), ',', 'length:', FireZIP.encode(text).length)
console.log('decoded:', FireZIP.decode(FireZIP.encode(text)))