Skip to content

Commit

Permalink
0.1.52
Browse files Browse the repository at this point in the history
  • Loading branch information
liborm85 committed Feb 17, 2019
1 parent 6258bd2 commit 9bcbf09
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions build/pdfmake.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! pdfmake v0.1.51, @license MIT, @link http://pdfmake.org */
/*! pdfmake v0.1.52, @license MIT, @link http://pdfmake.org */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports = factory();
Expand Down Expand Up @@ -944,7 +944,7 @@ module.exports = {
/* 2 */
/***/ (function(module, exports) {

var core = module.exports = { version: '2.6.4' };
var core = module.exports = { version: '2.6.5' };
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef


Expand Down Expand Up @@ -5449,7 +5449,7 @@ __webpack_require__(119)(String, 'String', function (iterated) {
/* 51 */
/***/ (function(module, exports) {

var core = module.exports = { version: '2.6.4' };
var core = module.exports = { version: '2.6.5' };
if (typeof __e == 'number') __e = core; // eslint-disable-line no-undef


Expand Down Expand Up @@ -19152,9 +19152,9 @@ var PDFObject = function () {
var stringBuffer = void 0;

if (isUnicode) {
stringBuffer = swapBytes(new Buffer("\uFEFF" + string, 'utf16le'));
stringBuffer = swapBytes(Buffer.from("\uFEFF" + string, 'utf16le'));
} else {
stringBuffer = new Buffer(string, 'ascii');
stringBuffer = Buffer.from(string.valueOf(), 'ascii');
} // Encrypt the string when necessary


Expand Down
2 changes: 1 addition & 1 deletion build/pdfmake.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions build/pdfmake.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/pdfmake.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pdfmake",
"version": "0.1.51",
"version": "0.1.52",
"description": "Client/server side PDF printing in pure JavaScript",
"main": "src/printer.js",
"directories": {
Expand Down

0 comments on commit 9bcbf09

Please sign in to comment.