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

bitwrap

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitwrap - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

2

package.json
{
"name": "bitwrap",
"version": "1.0.1",
"version": "1.0.2",
"description": "A lightweight steganographic npm library.",

@@ -5,0 +5,0 @@ "main": "bitwrap.js",

@@ -16,4 +16,4 @@ #bitwrap.js

let a = bitwrap.stringWrap('Hello!'),
b = bitwrap.unWrapString(a)
let a = bitwrap.stringWrap('Hello!')
let b = bitwrap.unWrapString(a)

@@ -32,5 +32,5 @@ console.log(a, '\n', b)

}
},
a = bitwrap.smartWrap([Obj]), // Array can have multiple objects
b = bitwrap.unWrapString(a)
}
let a = bitwrap.smartWrap([Obj]) // Array can have multiple objects
let b = bitwrap.unWrapString(a)

@@ -44,7 +44,6 @@ console.log(a, '\n', JSON.stringify(b))

let arr = [69, 420, 666, 1337],
a = bitwrap.arrayWrap(arr),
b = bitwrap.unWrap(a)
let arr = [69, 420, 666, 1337]
let b = bitwrap.unWrap(a)
console.log(a, '\n', b)
```
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