summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/internal/blob.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'ext/node/polyfills/internal/blob.mjs')
-rw-r--r--ext/node/polyfills/internal/blob.mjs7
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/node/polyfills/internal/blob.mjs b/ext/node/polyfills/internal/blob.mjs
deleted file mode 100644
index 1b685fad4..000000000
--- a/ext/node/polyfills/internal/blob.mjs
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
-// Node's implementation checks for a symbol they put in the blob prototype
-// Since the implementation of Blob is Deno's, the only option is to check the
-// objects constructor
-export function isBlob(object) {
- return object instanceof Blob;
-}