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

mimefuncs

Package Overview
Dependencies
Maintainers
3
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mimefuncs - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

6

package.json
{
"name": "mimefuncs",
"description": "Encode and decode quoted printable and base64 strings",
"version": "0.3.3",
"version": "0.3.4",
"main": "src/mimefuncs",

@@ -22,3 +22,3 @@ "homepage": "https://github.com/whiteout-io/mimefuncs",

"dependencies": {
"stringencoding": "https://github.com/whiteout-io/stringencoding/tarball/v0.1.0"
"wo-stringencoding": "~0.1.1"
},

@@ -37,2 +37,2 @@ "devDependencies": {

}
}
}

@@ -15,9 +15,5 @@ # MIME Functions

### [Bower](http://bower.io/):
bower install git@github.com:whiteout-io/mimefuncs.git#<TAG NAME>
### [npm](https://www.npmjs.org/):
npm install https://github.com/whiteout-io/mimefuncs/tarball/<TAG NAME>
npm install --save mimefuncs

@@ -24,0 +20,0 @@ ## Usage

@@ -25,7 +25,7 @@ // Copyright (c) 2013 Andris Reinman

if (typeof define === 'function' && define.amd) {
define(['stringencoding'], function(encoding) {
define(['wo-stringencoding'], function(encoding) {
return factory(encoding.TextEncoder, encoding.TextDecoder, root.btoa);
});
} else if (typeof exports === 'object') {
var encoding = require('stringencoding'),
var encoding = require('wo-stringencoding'),
btoaShim = function(str) {

@@ -32,0 +32,0 @@ return new Buffer(str, 'binary').toString("base64");

@@ -8,3 +8,3 @@ 'use strict';

'chai': '../node_modules/chai/chai',
'stringencoding': '../node_modules/stringencoding/dist/stringencoding'
'wo-stringencoding': '../node_modules/wo-stringencoding/dist/stringencoding'
}

@@ -11,0 +11,0 @@ });

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