mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-14 21:56:55 +03:00
ad281ba07a
* Add remotedev-serialize package * Update
16 lines
285 B
JavaScript
16 lines
285 B
JavaScript
// jsan stringify options
|
|
|
|
module.exports = {
|
|
refs: false, // references can't be resolved on the original Immutable structure
|
|
date: true,
|
|
function: true,
|
|
regex: true,
|
|
undefined: true,
|
|
error: true,
|
|
symbol: true,
|
|
map: true,
|
|
set: true,
|
|
nan: true,
|
|
infinity: true
|
|
};
|