Socket
Socket
Sign inDemoInstall

base64-stream

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

base64-stream - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

lib/decode.js
module.exports = Base64Decode;
var Transform = require('stream').Transform;
var Transform = require('stream').Transform || require('readable-stream').Transform;
var util = require('util');

@@ -5,0 +5,0 @@ var newline = /(\r\n|\n|\r)/gm;

module.exports = Base64Encode;
var Transform = require('stream').Transform;
var Transform = require('stream').Transform || require('readable-stream').Transform;
var util = require('util');

@@ -5,0 +5,0 @@

@@ -6,3 +6,3 @@ {

"author" : "Ross Johnson <ross@mazira.com>",
"version" : "0.1.0",
"version" : "0.1.1",
"repository" : {

@@ -16,2 +16,3 @@ "type" : "git",

"dependencies" : {
"readable-stream" : "1.0.2"
},

@@ -23,3 +24,3 @@ "devDependencies" : {

"license" : "MIT",
"engine" : "node >= 10.0"
"engine" : "node >= 0.8.0"
}

@@ -5,3 +5,3 @@ # Introduction

This library contains a streaming Base64 encoder and a streaming Base64 decoder for use with Node.js. These streams are written using the new Node.js v0.10 [stream interfaces](http://nodejs.org/api/stream.html) and are well covered with unit tests.
This library contains a streaming Base64 encoder and a streaming Base64 decoder for use with Node.js. These classes are written using the new Node.js v0.10 [stream interfaces](http://nodejs.org/api/stream.html) and are well covered with unit tests.

@@ -16,3 +16,3 @@ # Installation

This module currently requires Node v0.10. Support for Node v0.8 may be added in the future using the [readable-stream](https://github.com/isaacs/readable-stream) module.
This module currently requires Node v0.8 or higher. Support for versions prior to v0.10 is made possible by using the [readable-stream](https://github.com/isaacs/readable-stream) module.

@@ -19,0 +19,0 @@ # Usage

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