node-fd-slicer 1.1.0+repack1-2 source package in Ubuntu

Changelog

node-fd-slicer (1.1.0+repack1-2) unstable; urgency=medium

  * Fix test for Node.js >= 14 (Closes: #1009585). See also #1010008

 -- Yadd <email address hidden>  Fri, 22 Apr 2022 11:11:18 +0200

Upload details

Uploaded by:
Debian Javascript Maintainers
Uploaded to:
Sid
Original maintainer:
Debian Javascript Maintainers
Architectures:
all
Section:
javascript
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
node-fd-slicer_1.1.0+repack1-2.dsc 2.1 KiB f60e892619c29da934f66e7532bfc0387ac5375dfcf2094b0b6b036a61e015c5
node-fd-slicer_1.1.0+repack1.orig.tar.gz 7.3 KiB 90677f8c55a3280d3459f99ffc9514b0916a472d8cee437210c16d4886fed025
node-fd-slicer_1.1.0+repack1-2.debian.tar.xz 5.6 KiB 86f9f4ee2b095521237f9dcc77f996ca7b6e72191eafd7498ed5f4d18617b261

No changes file available.

Binary packages built by this source

node-fd-slicer: create multiple ReadStreams or WriteStreams from the same fd - Node.js module

 This module provides an API for creating multiple ReadStreams or WriteStreams
 from the same file descriptor.
 .
 The official Node.js API docs say that it is unsafe to use fs.write multiple
 times on the same file without waiting for the callback. This module solves
 this problem.
 .
 fd-slicer also provides additional features that builtin fs.createWriteStream
 is lacking, such as progress events and setting a maximum size to write.
 .
 Node.js is an event-based server-side JavaScript engine.