mime-split-multipart
If a stream is a MIME multipart message, this function splits it and returns a list of streams. If the stream is not a multipart message (i.e., if is-mime-content-type(s, "multipart/*") returns false), the function returns a list of one element—the stream itself (unchanged). The function does not guarantee that errors in the source stream are reported.
Signature
mime-split-multipart(s as stream) -> list of stream |
Parameters
Name | Type | Description |
|---|---|---|
s | stream | Specifies the input stream. |