File tree 3 files changed +4
-14
lines changed 3 files changed +4
-14
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,8 @@ exports.manglePrivatePropertiesOptions = {
93
93
} ,
94
94
mangle : {
95
95
properties : {
96
- regex : / ^ _ _ P R I V A T E _ /
96
+ regex : / ^ _ _ P R I V A T E _ / ,
97
+ reserved : [ 'do' ]
97
98
}
98
99
}
99
100
} ;
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- import { JsonProtoSerializer } from '../../remote/serializer' ;
19
- import { DatabaseId } from '../../core/database_info' ;
20
-
21
- export function newSerializer ( databaseId : DatabaseId ) : JsonProtoSerializer {
22
- return new JsonProtoSerializer ( databaseId , /* useProto3Json= */ true ) ;
23
- }
18
+ export * from '../browser/serializer' ;
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- /** Return the Platform-specific serializer monitor. */
19
- import { JsonProtoSerializer } from '../../remote/serializer' ;
20
- import { DatabaseId } from '../../core/database_info' ;
21
-
22
- export function newSerializer ( databaseId : DatabaseId ) : JsonProtoSerializer {
23
- return new JsonProtoSerializer ( databaseId , /* useProto3Json= */ true ) ;
24
- }
18
+ export * from '../node/serializer' ;
You can’t perform that action at this time.
0 commit comments