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

base64-tools

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-tools - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

package.json
{
"name": "base64-tools",
"version": "1.0.0",
"version": "1.0.1",
"description": "Base64 encoding/decoding",

@@ -21,2 +21,2 @@ "main": "index.js",

}
}
}

@@ -16,4 +16,4 @@ [![NPM](https://img.shields.io/npm/dt/base64-tools.svg?maxAge=3600)](https://npmjs.com/package/base64-tools/)

```js
const rgif = require("base64-tools");
let base64 = "data:image/png;base64,...";
const base64 = require("base64-tools");
let base64code = "data:image/png;base64,...";

@@ -25,3 +25,3 @@ base64.encode("roxza.png", function (err, data) {

base64.decode(base64, "roxza.png", function (err, name) {
base64.decode(base64code, "roxza.png", function (err, name) {
if (err) return;

@@ -28,0 +28,0 @@ console.log(name);

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