From 8041b789b2cad3ef3e5d33fe1d9816d2ebab557b Mon Sep 17 00:00:00 2001 From: Brian Whitney Date: Wed, 19 Dec 2018 11:39:05 -0500 Subject: [PATCH] removed comment --- src/core/lib/Mime.mjs | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/core/lib/Mime.mjs b/src/core/lib/Mime.mjs index 0ac77fea..56785b37 100644 --- a/src/core/lib/Mime.mjs +++ b/src/core/lib/Mime.mjs @@ -1,9 +1,3 @@ -/** - * @author bwhitn [brian.m.whitney@outlook.com] - * @copyright Crown Copyright 2016 - * @license Apache-2.0 - */ - import OperationError from "../errors/OperationError"; import cptable from "../vendor/js-codepage/cptable.js"; import {decodeQuotedPrintable} from "../lib/QuotedPrintable"; @@ -11,10 +5,11 @@ import {MIME_FORMAT} from "../lib/ChrEnc"; import Utils from "../Utils"; /** - * NOTE: Liberties taken include: - * No checks are made to verify quoted words are valid encodings e.g. underscore vs escape - * This attempts to decode mime reguardless if it is \r\n (correct newline) or \n (incorrect) - * Both Base64 and QuotedPrintable is used for decode. + * Class to do general Mime format parsing + * + * @author bwhitn [brian.m.whitney@outlook.com] + * @copyright Crown Copyright 2016 + * @license Apache-2.0 */ class Mime { /**