redux-devtools/packages/redux-devtools-serialize/src/constants/options.ts
Nathan Bierema d586f1955a
feat(redux-devtools-serialize): convert to TypeScript (#621)
* feature(redux-devtools-serialize): convert to TypeScript

* unused
2020-08-29 00:14:49 -04:00

16 lines
284 B
TypeScript

// jsan stringify options
export default {
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,
};