diff options
Diffstat (limited to 'ext/node/polyfills/internal/console/constructor.mjs')
-rw-r--r-- | ext/node/polyfills/internal/console/constructor.mjs | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/ext/node/polyfills/internal/console/constructor.mjs b/ext/node/polyfills/internal/console/constructor.mjs index afa18bb97..5ea9eeb3a 100644 --- a/ext/node/polyfills/internal/console/constructor.mjs +++ b/ext/node/polyfills/internal/console/constructor.mjs @@ -17,7 +17,17 @@ import { validateInteger, validateObject, } from "ext:deno_node/internal/validators.mjs"; -import { previewEntries } from "ext:deno_node/internal_binding/util.ts"; +const previewEntries = (iter, isKeyValue) => { + if (isKeyValue) { + const arr = [...iter]; + if (Array.isArray(arr[0]) && arr[0].length === 2) { + return [[].concat(...arr), true]; + } + return [arr, false]; + } else { + return [...iter]; + } +}; import { Buffer } from "node:buffer"; const { isBuffer } = Buffer; import { @@ -465,6 +475,7 @@ const consoleMethods = { // https://console.spec.whatwg.org/#table table(tabularData, properties) { + console.log("tabularData", tabularData); if (properties !== undefined) { validateArray(properties, "properties"); } |