File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 11// This file exports just the bare minimum required to work with statically generated code.
22// Can be used as a drop-in replacement for the full library as it has the same general structure.
3+ "use strict" ;
34var protobuf = exports ;
45
5- protobuf . Writer = require ( "../src/writer" ) ;
6+ protobuf . Writer = require ( "../src/writer" ) ;
67protobuf . BufferWriter = require ( "../src/writer_buffer" ) ;
7- protobuf . Reader = require ( "../src/reader" ) ;
8+ protobuf . Reader = require ( "../src/reader" ) ;
89protobuf . 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 ;
1213
1314function configure ( ) {
14- Reader . _configure ( ) ;
15+ protobuf . Reader . _configure ( ) ;
1516}
1617
1718// Be nice to AMD
You can’t perform that action at this time.
0 commit comments