protobufjs 7.2.5 → 7.2.6
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 +4 -4
- 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/root.js +2 -2
package/dist/light/protobuf.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* protobuf.js v7.2.
|
|
3
|
-
* compiled tue,
|
|
2
|
+
* protobuf.js v7.2.6 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled tue, 16 jan 2024 22:54:38 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
|
|