New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

encode-quoted-printable

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

encode-quoted-printable

Encode a string to a quoted printable format for emails

  • 0.1.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Encode Quoted Printable

Travis CI Test Status

This package simply exposes a single function to allow you to encode a string in to a quoted printable format that is usable in MIME emails

This code was originally reverse engineered from the quoted_printable_encode function within the PHP.js project. However, it sucked. Later, I grabbed the unit tests from the PHP project in order to improve my tests and it turns out that the PHP implementation is wrong. So! Good old Perl. I wrote it my way, trusting the Perl output of the PHP tests.

To install with NPM type:

npm install encode-quoted-printable

To use:

var encodeQuotedPrintable = require('encode-quoted-printable');
var text = 'This is a long email string';

encodeQuotedPrintable(text);

Keywords

FAQs

Package last updated on 22 Aug 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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