File tree Expand file tree Collapse file tree 1 file changed +7
-13
lines changed
packages/webchannel-wrapper/src Expand file tree Collapse file tree 1 file changed +7
-13
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* @license
3
- * Copyright 2017 Google Inc.
3
+ * Copyright 2017 Google LLC
4
4
*
5
5
* Licensed under the Apache License, Version 2.0 (the "License");
6
6
* you may not use this file except in compliance with the License.
@@ -74,15 +74,9 @@ goog.net.XhrIo.prototype['getResponseText'] =
74
74
goog . net . XhrIo . prototype . getResponseText ;
75
75
goog . net . XhrIo . prototype [ 'send' ] = goog . net . XhrIo . prototype . send ;
76
76
77
- /**
78
- * This ignore statement is required as closure will minify these properties
79
- * if done in the typical prettier format
80
- */
81
- // prettier-ignore
82
- module [ 'exports' ] = {
83
- 'createWebChannelTransport' : goog . net . createWebChannelTransport ,
84
- 'ErrorCode' : goog . net . ErrorCode ,
85
- 'EventType' : goog . net . EventType ,
86
- 'WebChannel' : goog . net . WebChannel ,
87
- 'XhrIo' : goog . net . XhrIo
88
- } ;
77
+ module [ 'exports' ] [ 'createWebChannelTransport' ] =
78
+ goog . net . createWebChannelTransport ;
79
+ module [ 'exports' ] [ 'ErrorCode' ] = goog . net . ErrorCode ;
80
+ module [ 'exports' ] [ 'EventType' ] = goog . net . EventType ;
81
+ module [ 'exports' ] [ 'WebChannel' ] = goog . net . WebChannel ;
82
+ module [ 'exports' ] [ 'XhrIo' ] = goog . net . XhrIo ;
You can’t perform that action at this time.
0 commit comments