commit bf4607277fa7133825cb7899015374917cd06b8f
Author: Mike Hommey <mhommey@mozilla.com>
Date:   Tue Jan 26 19:46:13 2021 +0900

    Add a flag to make precision mode like printf's %g (#149)
    
    With this, %g can be emulated with:
    ```
    DoubleToStringConverter cvt(
      UNIQUE_ZERO | NO_TRAILING_ZERO | EMIT_POSITIVE_EXPONENT_SIGN,
      "inf", "nan", 'e', 0, 0, 4, 0, 2)
    ```
