mapbox / pbf

A low-level, lightweight protocol buffers implementation in JavaScript.
BSD 3-Clause "New" or "Revised" License
801 stars 107 forks source link

added support for js_type at compile time #121

Closed UlysseM closed 4 years ago

UlysseM commented 4 years ago

This adds support for the jstype option.

When a field (integer or floating number) has the jstype option set to JS_STRING, it will be converted to and from string.

All the changes happen at compile time, so it should not break any application, nor increase the size of the application.