UNPKG
treehouse-router
Version:
latest (1.2.2)
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
URL router for use with treehouse
github.com/markevans/treehouse-router
markevans/treehouse-router
treehouse-router
/
lib
/
serializers
/
json_serializer.js
12 lines
(8 loc)
•
143 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
module
.
exports
= {
serialize
(state) {
return
JSON
.
stringify
(state) },
deserialize
(
string
) {
return
JSON
.
parse
(
string
) } }