249b199ff1
Based on the discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1521413, this patch simply removes the `ReadableStream` polyfill completely from MOZCENTRAL builds. With this patch, the size of the `gulp mozcentral` build target is thus further reduced (building on PR 10470): | | `build/mozcentral` |-------|------------------- |master | 3 339 666 |patch | 3 209 572
25 lines
879 B
JavaScript
25 lines
879 B
JavaScript
/* Copyright 2012 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
'use strict';
|
|
|
|
const pdfjsVersion = PDFJSDev.eval('BUNDLE_VERSION');
|
|
const pdfjsBuild = PDFJSDev.eval('BUNDLE_BUILD');
|
|
|
|
const pdfjsCoreWorker = require('./core/worker.js');
|
|
|
|
exports.WorkerMessageHandler = pdfjsCoreWorker.WorkerMessageHandler;
|