You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
__fast-json-stringify__ is significantly faster than `JSON.stringify()` for small payloads.
10
-
Its performance advantage shrinks as your payload grows.
9
+
__fast-json-stringify__ is significantly faster than `JSON.stringify()` for small payloads.
10
+
Its performance advantage shrinks as your payload grows.
11
11
It pairs well with [__flatstr__](https://www.npmjs.com/package/flatstr), which triggers a V8 optimization that improves performance when eventually converting the string to a `Buffer`.
12
12
13
13
@@ -159,18 +159,17 @@ And nested ones, too.
159
159
160
160
**Note**: In the case of string formatted Date and not Date Object, there will be no manipulation on it. It should be properly formatted.
161
161
162
-
Example with a MomentJS object:
162
+
Example with a Date object:
163
163
164
164
```javascript
165
-
constmoment=require('moment')
166
-
167
165
conststringify=fastJson({
168
166
title:'Example Schema with string date-time field',
0 commit comments