diff options
Diffstat (limited to 'serde_v8/magic/any_value.rs')
-rw-r--r-- | serde_v8/magic/any_value.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/serde_v8/magic/any_value.rs b/serde_v8/magic/any_value.rs index 9ae39bb2e..df85f90d8 100644 --- a/serde_v8/magic/any_value.rs +++ b/serde_v8/magic/any_value.rs @@ -1,5 +1,3 @@ -use num_bigint::BigInt; - // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use super::buffer::JsBuffer; use super::transl8::FromV8; @@ -7,6 +5,7 @@ use super::transl8::ToV8; use crate::magic::transl8::impl_magic; use crate::Error; use crate::ToJsBuffer; +use num_bigint::BigInt; /// An untagged enum type that can be any of number, string, bool, bigint, or /// buffer. |