From 2023821dde61fd0d2ddf2c3ba28c7ff0401b1687 Mon Sep 17 00:00:00 2001 From: Dario Piotrowicz Date: Sat, 7 Jun 2025 15:19:26 +0100 Subject: [PATCH] src: replace V8 Fast API todo comment with note comment --- src/node_blob.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/node_blob.cc b/src/node_blob.cc index e8c0795fcaac60..0bc4eb7e9318b5 100644 --- a/src/node_blob.cc +++ b/src/node_blob.cc @@ -450,7 +450,8 @@ void Blob::StoreDataObject(const FunctionCallbackInfo& args) { std::string(*type, type.length()))); } -// TODO(@anonrig): Add V8 Fast API to the following function +// Note: applying the V8 Fast API to the following function does not produce +// performance benefits (ref: https://github.com/nodejs/node/pull/58544) void Blob::RevokeObjectURL(const FunctionCallbackInfo& args) { CHECK_GE(args.Length(), 1); CHECK(args[0]->IsString());