source: trip-planner-front/node_modules/zone.js/bundles/zone-patch-socket-io.umd.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.3 KB
Line 
1'use strict';
2/**
3 * @license Angular v12.0.0-next.0
4 * (c) 2010-2020 Google LLC. https://angular.io/
5 * License: MIT
6 */
7(function (factory) {
8 typeof define === 'function' && define.amd ? define(factory) :
9 factory();
10}((function () {
11 'use strict';
12 /**
13 * @license
14 * Copyright Google LLC All Rights Reserved.
15 *
16 * Use of this source code is governed by an MIT-style license that can be
17 * found in the LICENSE file at https://angular.io/license
18 */
19 Zone.__load_patch('socketio', function (global, Zone, api) {
20 Zone[Zone.__symbol__('socketio')] = function patchSocketIO(io) {
21 // patch io.Socket.prototype event listener related method
22 api.patchEventTarget(global, [io.Socket.prototype], {
23 useG: false,
24 chkDup: false,
25 rt: true,
26 diff: function (task, delegate) {
27 return task.callback === delegate;
28 }
29 });
30 // also patch io.Socket.prototype.on/off/removeListener/removeAllListeners
31 io.Socket.prototype.on = io.Socket.prototype.addEventListener;
32 io.Socket.prototype.off = io.Socket.prototype.removeListener =
33 io.Socket.prototype.removeAllListeners = io.Socket.prototype.removeEventListener;
34 };
35 });
36})));
Note: See TracBrowser for help on using the repository browser.