Commit 0ea2740 1 parent 741b6d8 commit 0ea2740 Copy full SHA for 0ea2740
File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 1
1
// This file exports just the bare minimum required to work with statically generated code.
2
2
// Can be used as a drop-in replacement for the full library as it has the same general structure.
3
+ "use strict" ;
3
4
var protobuf = exports ;
4
5
5
- protobuf . Writer = require ( "../src/writer" ) ;
6
+ protobuf . Writer = require ( "../src/writer" ) ;
6
7
protobuf . BufferWriter = require ( "../src/writer_buffer" ) ;
7
- protobuf . Reader = require ( "../src/reader" ) ;
8
+ protobuf . Reader = require ( "../src/reader" ) ;
8
9
protobuf . BufferReader = require ( "../src/reader_buffer" ) ;
9
- protobuf . util = require ( "../src/util/runtime" ) ;
10
- protobuf . roots = { } ;
11
- protobuf . configure = configure ;
10
+ protobuf . util = require ( "../src/util/runtime" ) ;
11
+ protobuf . roots = { } ;
12
+ protobuf . configure = configure ;
12
13
13
14
function configure ( ) {
14
- Reader . _configure ( ) ;
15
+ protobuf . Reader . _configure ( ) ;
15
16
}
16
17
17
18
// Be nice to AMD
You can’t perform that action at this time.
0 commit comments