MCPcopy Index your code
hub / github.com/angular/angular / isBlob

Function isBlob

packages/common/http/src/request.ts:44–46  ·  view source on GitHub ↗

* Safely assert whether the given value is a Blob. * * In some execution environments Blob is not defined.

(value: any)

Source from the content-addressed store, hash-verified

42 * In some execution environments Blob is not defined.
43 */
44function isBlob(value: any): value is Blob {
45 return typeof Blob !== 'undefined' && value instanceof Blob;
46}
47
48/**
49 * Safely assert whether the given value is a FormData instance.

Callers 2

serializeBodyMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…