compression code in javascript ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Pierre

    #1

    compression code in javascript ?

    hi,

    is there somewhere an implementation of some compression algorithm zip/
    gzip/other ?

    Pierre
  • Jeremy J Starcher

    #2
    Re: compression code in javascript ?

    On Mon, 07 Apr 2008 15:00:27 -0700, Pierre wrote:
    hi,
    >
    is there somewhere an implementation of some compression algorithm zip/
    gzip/other ?
    >
    Pierre
    Searching for "javascript coompression" with Google resulted in this hit
    in the #5 slot.

    <URL: http://rumkin.com/tools/compression/compress_huff.php >

    (Note: For files of any size WORTH compressing, I can't imagine this
    being a good idea. Javascript would run too slow for any real-world
    purpose. If you are trying to reduce file transfer size, you would be
    better to make sure that gzip is enable on your server.

    If you are trying to obfuscate strings for some kind of online game,
    ROT13 or some other simple cypher may serve you better.

    If you are looking for some kind of security, you are not likely to find
    it with this approach.)

    Comment

    Working...