Comparing version 1.0.0 to 1.0.1
"use strict"; | ||
/*global window*/ | ||
exports.encode = window.btoa; | ||
exports.decode = window.atob; | ||
exports.encode = window.btoa.bind(window); | ||
exports.decode = window.atob.bind(window); |
{ | ||
"name": "base64it", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A simple base64 encoder/decoder that works with HTML5 and Node. Supports strict mode and URL safe encoding/decoding.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/YuzuJS/base64it", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14343