UNPKG

@loaders.gl/loader-utils

Version:

Framework-independent loaders for 3D graphics formats

13 lines (8 loc) 287 B
// loaders.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import * as stream from 'stream'; export type {Writable} from 'stream'; /** Wrapper for Node.js stream method */ export const Transform = stream.Transform; export const isSupported = Boolean(stream);