Browse Source

Merge pull request #8983 from Snuffleupagus/rm-unused

Remove unused helper code
Tim van der Meij 8 years ago committed by GitHub
parent
commit
ef02d3d8da
  1. 3
      src/display/global.js
  2. 4
      src/shared/util.js

3
src/display/global.js

@ -34,8 +34,6 @@ import { Metadata } from './metadata';
import { renderTextLayer } from './text_layer'; import { renderTextLayer } from './text_layer';
import { SVGGraphics } from './svg'; import { SVGGraphics } from './svg';
var isWorker = (typeof window === 'undefined');
// The global PDFJS object is now deprecated and will not be supported in // The global PDFJS object is now deprecated and will not be supported in
// the future. The members below are maintained for backward compatibility // the future. The members below are maintained for backward compatibility
// and shall not be extended or modified. If the global.js is included as // and shall not be extended or modified. If the global.js is included as
@ -306,6 +304,5 @@ PDFJS.UnsupportedManager = _UnsupportedManager;
export { export {
globalScope, globalScope,
isWorker,
PDFJS, PDFJS,
}; };

4
src/shared/util.js

@ -800,10 +800,6 @@ var Util = (function UtilClosure() {
return result; return result;
}; };
Util.sign = function Util_sign(num) {
return num < 0 ? -1 : 1;
};
var ROMAN_NUMBER_MAP = [ var ROMAN_NUMBER_MAP = [
'', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM', '', 'C', 'CC', 'CCC', 'CD', 'D', 'DC', 'DCC', 'DCCC', 'CM',
'', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC', '', 'X', 'XX', 'XXX', 'XL', 'L', 'LX', 'LXX', 'LXXX', 'XC',

Loading…
Cancel
Save