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

Function isArrayBuffer

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

* Safely assert whether the given value is an ArrayBuffer. * * In some execution environments ArrayBuffer is not defined.

(value: any)

Source from the content-addressed store, hash-verified

33 * In some execution environments ArrayBuffer is not defined.
34 */
35function isArrayBuffer(value: any): value is ArrayBuffer {
36 return typeof ArrayBuffer !== 'undefined' && value instanceof ArrayBuffer;
37}
38
39/**
40 * Safely assert whether the given value is a Blob.

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…