UNPKG

@oazmi/build-tools

Version:

general deno build tool scripts which I practically use in all of my typescript repos

19 lines (18 loc) 667 B
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import * as dntShim from "../../../../../_dnt.shims.js"; import { readShort } from "./read_short.js"; /** * Read big endian 32bit integer from BufReader * @param buf * * @deprecated (will be removed after 1.0.0) Use the {@link https://developer.mozilla.org/en-US/docs/Web/API/Streams_API | Web Streams API} instead. */ export async function readInt(buf) { const high = await readShort(buf); if (high === null) return null; const low = await readShort(buf); if (low === null) throw new dntShim.Deno.errors.UnexpectedEof(); return (high << 16) | low; }