mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
10 lines
190 B
JavaScript
10 lines
190 B
JavaScript
import Store from 'src/devtools/store';
|
|
|
|
export function test(value) {
|
|
return value instanceof Store;
|
|
}
|
|
|
|
export function print(value, serialize, indent) {
|
|
return value.__toSnapshot();
|
|
}
|