mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 21:26:44 +03:00
10bf7bc084
* chore(*): upgrade prettier * chore(*): upgrade prettier
16 lines
286 B
JavaScript
16 lines
286 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,
|
|
};
|