protobufjs 8.0.2 → 8.0.3
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 +2 -2
- package/dist/light/protobuf.min.js +2 -2
- package/dist/minimal/protobuf.js +2 -2
- package/dist/minimal/protobuf.min.js +2 -2
- package/dist/protobuf.js +6 -10
- 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 +4 -8
package/dist/light/protobuf.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* protobuf.js v8.0.
|
|
3
|
-
* compiled mon, 27 apr 2026 23:
|
|
2
|
+
* protobuf.js v8.0.3 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled mon, 27 apr 2026 23:36:39 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 v8.0.
|
|
3
|
-
* compiled mon, 27 apr 2026 23:
|
|
2
|
+
* protobuf.js v8.0.3 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled mon, 27 apr 2026 23:36:39 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/minimal/protobuf.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* protobuf.js v8.0.
|
|
3
|
-
* compiled mon, 27 apr 2026 23:
|
|
2
|
+
* protobuf.js v8.0.3 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled mon, 27 apr 2026 23:36:39 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 v8.0.
|
|
3
|
-
* compiled mon, 27 apr 2026 23:
|
|
2
|
+
* protobuf.js v8.0.3 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled mon, 27 apr 2026 23:36:39 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 v8.0.
|
|
3
|
-
* compiled mon, 27 apr 2026 23:
|
|
2
|
+
* protobuf.js v8.0.3 (c) 2016, daniel wirtz
|
|
3
|
+
* compiled mon, 27 apr 2026 23:36:39 utc
|
|
4
4
|
* licensed under the bsd-3-clause license
|
|
5
5
|
* see: https://github.com/dcodeio/protobuf.js for details
|
|
6
6
|
*/
|
|
@@ -4392,14 +4392,10 @@ function parse(source, root, options) {
|
|
|
4392
4392
|
parsePackage();
|
|
4393
4393
|
break;
|
|
4394
4394
|
|
|
4395
|
-
case "import":
|
|
4396
|
-
|
|
4397
|
-
|
|
4398
|
-
|
|
4399
|
-
throw illegal(token);
|
|
4400
|
-
|
|
4401
|
-
parseImport();
|
|
4402
|
-
break;
|
|
4395
|
+
case "import":
|
|
4396
|
+
|
|
4397
|
+
parseImport();
|
|
4398
|
+
break;
|
|
4403
4399
|
|
|
4404
4400
|
case "syntax":
|
|
4405
4401
|
|