diff --git a/lib/utils/utils.js b/lib/utils/utils.js index 4f966a832..2cca31c63 100644 --- a/lib/utils/utils.js +++ b/lib/utils/utils.js @@ -79,7 +79,7 @@ var utils = module.exports = { }, xmlEncode: function(text) { // eslint-disable-next-line no-control-regex - return text.replace(/[<>&'"\x7F\x00-\x08\x0A-\x0C\x0E-\x1F]/g, function(c) { + return text.replace(/[<>&'"\x7F\x00-\x08\x0B-\x0C\x0E-\x1F]/g, function(c) { switch (c) { case '<': return '<'; case '>': return '>'; diff --git a/package.json b/package.json index fe841a0b8..a16979d15 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "exceljs", - "version": "0.4.12", + "version": "0.4.13", "description": "Excel Workbook Manager - Read and Write xlsx and csv Files.", "private": false, "license": "MIT",