blob: 5ad45dc03bba6068e435103025d205a972668a6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
'use strict';
module.exports = function quoted_printable_decode(str) {
// eslint-disable-line camelcase
// discuss at: http://locutus.io/php/quoted_printable_decode/
// original by: Ole Vrijenhoek
// bugfixed by: Brett Zamir (http://brett-zamir.me)
// bugfixed by: Theriault (https://github.com/Theriault)
// reimplemented by: Theriault (https://github.com/Theriault)
// improved by: Brett Zamir (http://brett-zamir.me)
// example 1: quoted_printable_decode('a=3Db=3Dc')
// returns 1: 'a=b=c'
// example 2: quoted_printable_decode('abc =20\r\n123 =20\r\n')
// returns 2: 'abc \r\n123 \r\n'
// example 3: quoted_printable_decode('012345678901234567890123456789012345678901234567890123456789012345678901234=\r\n56789')
// returns 3: '01234567890123456789012345678901234567890123456789012345678901234567890123456789'
// example 4: quoted_printable_decode("Lorem ipsum dolor sit amet=23, consectetur adipisicing elit")
// returns 4: 'Lorem ipsum dolor sit amet#, consectetur adipisicing elit'
// Decodes all equal signs followed by two hex digits
var RFC2045Decode1 = /=\r\n/gm;
// the RFC states against decoding lower case encodings, but following apparent PHP behavior
var RFC2045Decode2IN = /=([0-9A-F]{2})/gim;
// RFC2045Decode2IN = /=([0-9A-F]{2})/gm,
var RFC2045Decode2OUT = function RFC2045Decode2OUT(sMatch, sHex) {
return String.fromCharCode(parseInt(sHex, 16));
};
return str.replace(RFC2045Decode1, '').replace(RFC2045Decode2IN, RFC2045Decode2OUT);
};
//# sourceMappingURL=quoted_printable_decode.js.map
|