mirror of
https://github.com/electron/electron.git
synced 2026-01-24 14:57:58 -05:00
buffer, null, array etc. all belong to object
This commit is contained in:
@@ -53,19 +53,19 @@ let getObjectPrototype = function (object) {
|
||||
let valueToMeta = function (sender, value, optimizeSimpleObject = false) {
|
||||
// Determine the type of value.
|
||||
let meta = { type: typeof value }
|
||||
if (Buffer.isBuffer(value)) {
|
||||
meta.type = 'buffer'
|
||||
} else if (value === null) {
|
||||
meta.type = 'value'
|
||||
} else if (Array.isArray(value)) {
|
||||
meta.type = 'array'
|
||||
} else if (value instanceof Error) {
|
||||
meta.type = 'error'
|
||||
} else if (value instanceof Date) {
|
||||
meta.type = 'date'
|
||||
} else if (meta.type === 'object') {
|
||||
if (meta.type === 'object') {
|
||||
// Recognize certain types of objects.
|
||||
if (value.constructor != null && value.constructor.name === 'Promise') {
|
||||
if (value === null) {
|
||||
meta.type = 'value'
|
||||
} else if (Buffer.isBuffer(value)) {
|
||||
meta.type = 'buffer'
|
||||
} else if (Array.isArray(value)) {
|
||||
meta.type = 'array'
|
||||
} else if (value instanceof Error) {
|
||||
meta.type = 'error'
|
||||
} else if (value instanceof Date) {
|
||||
meta.type = 'date'
|
||||
} else if (value.constructor != null && value.constructor.name === 'Promise') {
|
||||
meta.type = 'promise'
|
||||
} else if (value.hasOwnProperty('callee') && value.length != null) {
|
||||
// Treat the arguments object as array.
|
||||
|
||||
Reference in New Issue
Block a user