deno/ext/web/console.rs
Divy d5c0c89b49
refactor: merge deno_console into deno_web (#31185)
This commit deprecated `deno_console` crate and merges it into
`deno_web`.

This will allow us to limit number of crates we need to publish and
(maybe) improve compile and link times.

The actual `ext/console` directory will be removed in a follow up PR,
once a new version is published and points to `deno_web` crate.

---------

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2025-11-05 08:46:48 +01:00

24 lines
631 B
Rust

// Copyright 2018-2025 the Deno authors. MIT license.
use deno_core::op2;
use deno_core::v8;
#[op2]
pub fn op_preview_entries<'s>(
scope: &mut v8::PinScope<'s, '_>,
object: &v8::Object,
slow_path: bool,
) -> v8::Local<'s, v8::Value> {
let (entries, is_key_value) = object.preview_entries(scope);
match entries {
None => v8::undefined(scope).into(),
Some(entries) => {
if !slow_path {
return entries.into();
}
let ret: [v8::Local<v8::Value>; 2] =
[entries.into(), v8::Boolean::new(scope, is_key_value).into()];
v8::Array::new_with_elements(scope, &ret).into()
}
}
}