protobufjs 7.2.5 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/light/protobuf.js +4 -4
- package/dist/light/protobuf.js.map +1 -1
- package/dist/light/protobuf.min.js +3 -3
- package/dist/light/protobuf.min.js.map +1 -1
- package/dist/minimal/protobuf.js +2 -2
- package/dist/minimal/protobuf.min.js +2 -2
- package/dist/protobuf.js +22 -5
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/package.json +1 -1
- package/src/parse.js +18 -1
- package/src/root.js +2 -2
package/dist/light/protobuf.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* protobuf.js v7.
|
|
3
|
-
* compiled
|
|
2
|
+
* protobuf.js v7.3.0 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled fri, 10 may 2024 03:38:34 utc
|
|
4
4
|
* licensed under the bsd-3-clause license
|
|
5
5
|
* see: https://github.com/dcodeio/protobuf.js for details
|
|
6
6
|
*/
|
|
@@ -4254,10 +4254,10 @@ Root.prototype.load = function load(filename, options, callback) {
|
|
|
4254
4254
|
/* istanbul ignore if */
|
|
4255
4255
|
if (!callback)
|
|
4256
4256
|
return;
|
|
4257
|
-
var cb = callback;
|
|
4258
|
-
callback = null;
|
|
4259
4257
|
if (sync)
|
|
4260
4258
|
throw err;
|
|
4259
|
+
var cb = callback;
|
|
4260
|
+
callback = null;
|
|
4261
4261
|
cb(err, root);
|
|
4262
4262
|
}
|
|
4263
4263
|
|