Socket
Socket
Sign inDemoInstall

atob

Package Overview
Dependencies
0
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.3 to 2.0.0

browser-atob.js

12

bin/atob.js
#!/usr/bin/env node
/*jshint strict:true node:true es5:true onevar:true laxcomma:true laxbreak:true eqeqeq:true immed:true latedef:true*/
(function () {
"use strict";
'use strict';
var atob = require('../index')
;
console.log(atob(process.argv[2]));
}());
var atob = require('../node-atob');
var str = process.argv[2];
console.log(atob(str));

@@ -7,3 +7,3 @@ {

"type": "git",
"url": "git://github.com/coolaj86/node-browser-compat.git"
"url": "git://github.com/coolaj86/node-browser-compat/atob.git"
},

@@ -14,7 +14,8 @@ "keywords": [

],
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.info)",
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com)",
"engines": {
"node": ">= 0.4.0"
},
"main": "index",
"main": "node-atob.js",
"browser": "browser-atob.js",
"bin": {

@@ -24,3 +25,3 @@ "atob": "bin/atob.js"

"license": "(MIT OR Apache-2.0)",
"version": "1.1.3"
"version": "2.0.0"
}

@@ -21,2 +21,10 @@ atob

Changes
=======
* v2.0.0 provide browser version for ios web workers
* v1.2.0 provide (empty) browser version
* v1.1.3 add MIT license (see [#4](https://github.com/node-browser-compat/atob/issues/4))
* v1.1.2 node only
LICENSE

@@ -23,0 +31,0 @@ =======

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc