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/minimal/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
|
*/
|
|
@@ -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
|
*/
|
package/dist/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
|
*/
|
|
@@ -5543,10 +5543,10 @@ Root.prototype.load = function load(filename, options, callback) {
|
|
|
5543
5543
|
/* istanbul ignore if */
|
|
5544
5544
|
if (!callback)
|
|
5545
5545
|
return;
|
|
5546
|
-
var cb = callback;
|
|
5547
|
-
callback = null;
|
|
5548
5546
|
if (sync)
|
|
5549
5547
|
throw err;
|
|
5548
|
+
var cb = callback;
|
|
5549
|
+
callback = null;
|
|
5550
5550
|
cb(err, root);
|
|
5551
5551
|
}
|
|
5552
5552
|
|