Comparing version 2.1.1 to 3.0.0
{ | ||
"name": "uue", | ||
"main": "uue.js", | ||
"version": "2.1.1", | ||
"version": "3.0.0", | ||
"description": "UUE decoder and encoder for Node.js", | ||
@@ -14,3 +14,2 @@ "keywords": ["uue", "uuencode", "uudecode", "uuencoding", "uudecoding"], | ||
"dependencies": { | ||
"array.prototype.findindex": "~1.0.0", | ||
"extend": "~3.0.0" | ||
@@ -17,0 +16,0 @@ }, |
@@ -5,3 +5,5 @@ The **UUE** module is able to perform [uuencoding](http://en.wikipedia.org/wiki/Uuencoding) of a file (or Node.js Buffer) to a text message. This module is also able to find uuencoded files in text messages and decode them. | ||
The module is written in JavaScript and requires [Node.js](http://nodejs.org/) to run. (Node.js version 0.10.x or 0.12.x is recommended. The latest stable [io.js](https://iojs.org/) is fine too.) | ||
The module is written in JavaScript and requires [Node.js](http://nodejs.org/) to run. | ||
* Starting from v3.0.0, this module requires Node.js version 4.0.0 or newer. | ||
* You may run older versions of this module in Node.js version 0.10.x or 0.12.x. These older versions, however, had to contain an additional dependency ([`array.prototype.findindex`](https://www.npmjs.com/package/array.prototype.findindex)) as a polyfill for a missing [ECMAScript 2015 (ES6) feature](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/findIndex) which is now a part of Node.js. | ||
@@ -8,0 +10,0 @@ ## Installing the UUE module |
@@ -1,2 +0,1 @@ | ||
require('array.prototype.findindex'); | ||
var fs = require('fs'); | ||
@@ -3,0 +2,0 @@ var path = require('path'); |
Sorry, the diff of this file is not supported yet
25562
1
125
352
- Removedarray.prototype.findindex@~1.0.0
- Removedarray.prototype.findindex@1.0.0(transitive)