The documentation for [formatRFC3339](https://date-fns.org/v2.15.0/docs/formatRFC3339) suggests following output in comment: ``` // Represent 18 September 2019 in ISO 3339 format: const result = formatRFC3339(new Date(2019, 8, 18, 19, 0, 52)) //=> '2019-09-18T19:00:52Z' ``` However, what it actually outputs is: ``` //-> '2019-09-18T19:00:52+5.5:30' ``` Which doesn't sit well with Golang standard lib, RFC3339 format! Replace the prior date with later date in [Go Playground](https://play.golang.org/p/Srequ7g_p_C) and you'll see the issue. P.S. I used [StackBlitz](https://stackblitz.com/edit/date-fns-playground) to run date-fns.