Skip to content

Commit 9dbe8f6

Browse files
authored
Update example in README (#73)
1 parent f5957ee commit 9dbe8f6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,19 @@ serialize({
4040
bool : true,
4141
nil : null,
4242
undef: undefined,
43-
date: new Date("Thu, 28 Apr 2016 22:02:17 GMT"),
44-
map: new Map([['hello', 'world']]),
45-
set: new Set([123, 456]),
46-
47-
fn: function echo(arg) { return arg; },
48-
re: /([^\s]+)/g
43+
inf : Infinity,
44+
date : new Date("Thu, 28 Apr 2016 22:02:17 GMT"),
45+
map : new Map([['hello', 'world']]),
46+
set : new Set([123, 456]),
47+
fn : function echo(arg) { return arg; },
48+
re : /([^\s]+)/g
4949
});
5050
```
5151

5252
The above will produce the following string output:
5353

5454
```js
55-
'{"str":"string","num":0,"obj":{"foo":"foo"},"arr":[1,2,3],"bool":true,"nil":null,"undef":undefined,"date":new Date("2016-04-28T22:02:17.000Z"),"map":new Map([["hello","world"]]),"set":new Set([123,456]),"fn":function echo(arg) { return arg; },"re":/([^\s]+)/g}'
55+
'{"str":"string","num":0,"obj":{"foo":"foo"},"arr":[1,2,3],"bool":true,"nil":null,"undef":undefined,"inf":Infinity,"date":new Date("2016-04-28T22:02:17.000Z"),"map":new Map([["hello","world"]]),"set":new Set([123,456]),"fn":function echo(arg) { return arg; },"re":new RegExp("([^\\\\s]+)", "g")}'
5656
```
5757

5858
Note: to produced a beautified string, you can pass an optional second argument to `serialize()` to define the number of spaces to be used for the indentation.

0 commit comments

Comments
 (0)