|
@@ -6919,7 +6919,7 @@ var PostScriptCompiler = function PostScriptCompilerClosure() {
|
|
|
return null;
|
|
|
}
|
|
|
n = num1.number;
|
|
|
- if (n < 0 || (n | 0) !== n || stack.length < n) {
|
|
|
+ if (n < 0 || !Number.isInteger(n) || stack.length < n) {
|
|
|
return null;
|
|
|
}
|
|
|
ast1 = stack[stack.length - n - 1];
|
|
@@ -6963,7 +6963,7 @@ var PostScriptCompiler = function PostScriptCompilerClosure() {
|
|
|
}
|
|
|
j = num2.number;
|
|
|
n = num1.number;
|
|
|
- if (n <= 0 || (n | 0) !== n || (j | 0) !== j || stack.length < n) {
|
|
|
+ if (n <= 0 || !Number.isInteger(n) || !Number.isInteger(j) || stack.length < n) {
|
|
|
return null;
|
|
|
}
|
|
|
j = (j % n + n) % n;
|
|
@@ -13443,8 +13443,8 @@ var _UnsupportedManager = function UnsupportedManagerClosure() {
|
|
|
}();
|
|
|
var version, build;
|
|
|
{
|
|
|
- exports.version = version = '1.9.534';
|
|
|
- exports.build = build = 'c8b5ba27';
|
|
|
+ exports.version = version = '1.9.537';
|
|
|
+ exports.build = build = 'bd3f16bf';
|
|
|
}
|
|
|
exports.getDocument = getDocument;
|
|
|
exports.LoopbackPort = LoopbackPort;
|
|
@@ -28434,7 +28434,7 @@ var SVGGraphics = function SVGGraphics() {
|
|
|
return opTree;
|
|
|
}
|
|
|
function pf(value) {
|
|
|
- if (value === (value | 0)) {
|
|
|
+ if (Number.isInteger(value)) {
|
|
|
return value.toString();
|
|
|
}
|
|
|
var s = value.toFixed(10);
|
|
@@ -29207,8 +29207,8 @@ exports.SVGGraphics = SVGGraphics;
|
|
|
"use strict";
|
|
|
|
|
|
|
|
|
-var pdfjsVersion = '1.9.534';
|
|
|
-var pdfjsBuild = 'c8b5ba27';
|
|
|
+var pdfjsVersion = '1.9.537';
|
|
|
+var pdfjsBuild = 'bd3f16bf';
|
|
|
var pdfjsSharedUtil = __w_pdfjs_require__(0);
|
|
|
var pdfjsDisplayGlobal = __w_pdfjs_require__(98);
|
|
|
var pdfjsDisplayAPI = __w_pdfjs_require__(55);
|
|
@@ -35070,8 +35070,8 @@ if (!_global_scope2.default.PDFJS) {
|
|
|
}
|
|
|
var PDFJS = _global_scope2.default.PDFJS;
|
|
|
{
|
|
|
- PDFJS.version = '1.9.534';
|
|
|
- PDFJS.build = 'c8b5ba27';
|
|
|
+ PDFJS.version = '1.9.537';
|
|
|
+ PDFJS.build = 'bd3f16bf';
|
|
|
}
|
|
|
PDFJS.pdfBug = false;
|
|
|
if (PDFJS.verbosity !== undefined) {
|
|
@@ -45662,7 +45662,7 @@ var Type1CharString = function Type1CharStringClosure() {
|
|
|
var start = stackLength - howManyArgs;
|
|
|
for (var i = start; i < stackLength; i++) {
|
|
|
var value = this.stack[i];
|
|
|
- if (value === (value | 0)) {
|
|
|
+ if (Number.isInteger(value)) {
|
|
|
this.output.push(28, value >> 8 & 0xff, value & 0xff);
|
|
|
} else {
|
|
|
value = 65536 * value | 0;
|
|
@@ -50915,7 +50915,7 @@ var AnnotationBorderStyle = function () {
|
|
|
_createClass(AnnotationBorderStyle, [{
|
|
|
key: 'setWidth',
|
|
|
value: function setWidth(width) {
|
|
|
- if (width === (width | 0)) {
|
|
|
+ if (Number.isInteger(width)) {
|
|
|
this.width = width;
|
|
|
}
|
|
|
}
|
|
@@ -50973,14 +50973,14 @@ var AnnotationBorderStyle = function () {
|
|
|
}, {
|
|
|
key: 'setHorizontalCornerRadius',
|
|
|
value: function setHorizontalCornerRadius(radius) {
|
|
|
- if (radius === (radius | 0)) {
|
|
|
+ if (Number.isInteger(radius)) {
|
|
|
this.horizontalCornerRadius = radius;
|
|
|
}
|
|
|
}
|
|
|
}, {
|
|
|
key: 'setVerticalCornerRadius',
|
|
|
value: function setVerticalCornerRadius(radius) {
|
|
|
- if (radius === (radius | 0)) {
|
|
|
+ if (Number.isInteger(radius)) {
|
|
|
this.verticalCornerRadius = radius;
|
|
|
}
|
|
|
}
|