UNPKG

formdata-node

Version:

FormData implementation for Node.js. Built over Readable stream and async generators. Can be used to communicate between servers with multipart/form-data format.

9 lines (6 loc) 138 B
"use strict"; const { Readable } = require("stream"); const isReadable = val => val instanceof Readable; module.exports = isReadable;