redux-devtools/packages/remotedev-serialize/constants/options.js
Nathan Bierema ad281ba07a
Add remotedev-serialize package (#562)
* Add remotedev-serialize package

* Update
2020-08-06 16:39:05 -04:00

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
};