Skip to main content
Module

std/node/internal/blob.mjs

Deno standard library
Go to Latest
File
// Copyright 2018-2022 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 constructorexport function isBlob(object) { return object instanceof Blob;}