mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
fix refactor value explorer
This commit is contained in:
@@ -22,15 +22,13 @@ const isDate = object =>
|
||||
|
||||
const toJSON_safe = object => {
|
||||
try {
|
||||
return with_code_execution(() => {
|
||||
return object.toJSON()
|
||||
})
|
||||
return object.toJSON()
|
||||
} catch(e) {
|
||||
return object
|
||||
}
|
||||
}
|
||||
|
||||
const displayed_entries = object => {
|
||||
export const displayed_entries = object => {
|
||||
if(object == null || typeof(object) != 'object') {
|
||||
return []
|
||||
} else if((object[Symbol.toStringTag]) == 'Module') {
|
||||
|
||||
Reference in New Issue
Block a user