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

libmime

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

libmime - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

4

CHANGELOG.md
# Changelog
## v2.0.2 2016-02-11
* Fixed an issue with base64 mime words encoding
## v2.0.1 2016-02-11

@@ -4,0 +8,0 @@

2

lib/libmime.js

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

if (maxLength && encodedStr.length > maxLength) {
if (maxLength && (mimeWordEncoding !== 'B' ? encodedStr : libbase64.encode(data)).length > maxLength) {
if (mimeWordEncoding === 'Q') {

@@ -132,0 +132,0 @@ encodedStr = splitMimeEncodedString(encodedStr, maxLength).join('?= =?' + toCharset + '?' + mimeWordEncoding + '?');

{
"name": "libmime",
"description": "Encode and decode quoted printable and base64 strings",
"version": "2.0.1",
"version": "2.0.2",
"main": "lib/libmime",

@@ -27,8 +27,8 @@ "homepage": "https://github.com/andris9/libmime",

"devDependencies": {
"chai": "^3.4.1",
"chai": "^3.5.0",
"grunt": "^0.4.5",
"grunt-eslint": "^17.3.1",
"grunt-mocha-test": "^0.12.7",
"mocha": "^2.3.4"
"mocha": "^2.4.5"
}
}
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