Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

binary-cli

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binary-cli - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

6

cli.js

@@ -37,7 +37,3 @@ #!/usr/bin/env node

function binEncode (text) {
var bin = ""
for (var i = 0; i < text.length; i++) {
bin += text[i].charCodeAt(0).toString(2) + " "
}
return bin
return text.split("").map(char => char.charCodeAt(0).toString(2)).join(" ")
}

@@ -44,0 +40,0 @@

2

package.json
{
"name": "binary-cli",
"version": "1.1.1",
"version": "1.1.2",
"description": "Binary encode & decode a string, right from your terminal.",

@@ -5,0 +5,0 @@ "license": "MIT",

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