protobufjs 7.5.8 → 7.6.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/README.md CHANGED
@@ -184,7 +184,7 @@ With that in mind and again for performance reasons, each message class provides
184
184
  ```js
185
185
  var object = AwesomeMessage.toObject(message, {
186
186
  enums: String, // enums as string names
187
- longs: String, // longs as strings (requires long.js)
187
+ longs: String, // longs as strings (or BigInt for bigint values)
188
188
  bytes: String, // bytes as base64 encoded strings
189
189
  defaults: true, // includes default values
190
190
  arrays: true, // populates empty arrays (repeated fields) even if defaults=false