New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

node-lzw

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-lzw - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

7

package.json
{
"author": "Marco Murdocca (marco.murdocca@xenialab.it)",
"name": "node-lzw",
"description": "LZW algorithm implementation",
"version": "0.1.0",
"description": "LZW compression algorithm",
"version": "0.1.1",
"repository": {

@@ -13,2 +13,5 @@ "type" : "git",

"lzw",
"Lempel",
"Ziv",
"Welch",
"compression"

@@ -15,0 +18,0 @@ ],

LZW
-------------
This is LZW algorithm module
This is LZW compression algorithm

@@ -12,2 +12,18 @@ ## Install

## Example
```app.js
"use strict";
var lzw = require("node-lzw");
var buffer = "qwertyuiopasdfghjklzxcvbnm1234567890";
var encode = lzw.encode(buffer);
console.log(encode);
var decode = lzw.decode(buffer);
console.log(decode);
```
## API

@@ -14,0 +30,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc