Comparing version 0.3.7 to 0.3.8
{ | ||
"name": "mimefuncs", | ||
"description": "Encode and decode quoted printable and base64 strings", | ||
"version": "0.3.7", | ||
"version": "0.3.8", | ||
"main": "src/mimefuncs", | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/whiteout-io/mimefuncs", |
@@ -28,3 +28,3 @@ // Copyright (c) 2013 Andris Reinman | ||
define(['stringencoding'], function(encoding) { | ||
return factory(encoding.TextEncoder, encoding.TextDecoder, root.btoa); | ||
return factory(encoding.TextEncoder, encoding.TextDecoder, btoa); | ||
}); | ||
@@ -34,3 +34,3 @@ } else if (typeof exports === 'object' && typeof navigator !== 'undefined') { | ||
encoding = require('wo-stringencoding'); | ||
module.exports = factory(encoding.TextEncoder, encoding.TextDecoder, root.btoa); | ||
module.exports = factory(encoding.TextEncoder, encoding.TextDecoder, btoa); | ||
} else if (typeof exports === 'object') { | ||
@@ -45,3 +45,3 @@ // common.js for node.js | ||
// global for browser | ||
root.mimefuncs = factory(root.TextEncoder, root.TextDecoder, root.btoa); | ||
root.mimefuncs = factory(root.TextEncoder, root.TextDecoder, btoa); | ||
} | ||
@@ -48,0 +48,0 @@ }(this, function(TextEncoder, TextDecoder, btoa) { |
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
87973