← Packages / scroll / Capabilities

IO.Console

in scroll v0.1.0

v0.1.0 is the oldest version of scroll that was analysed, so there is nothing to compare it against. IO.Console is a first sighting, not a change.

lib/scroll/audio.march:13
10-- The browser renders the blob as `<audio controls src="data:<mime>;base64,<b64>">`.
11
12mod ScrollAudio do
13 needs IO.Console
14
15doc "Build the raw sentinel string for an audio blob (for testing / composing)."
16fn make_sentinel(mime : String, b64 : String) : String do
lib/scroll/image.march:25
22-- - No validation of base64 content — callers are responsible for encoding.
23
24mod ScrollImage do
25 needs IO.Console
26
27doc "Build the raw sentinel string for an image blob (for testing / composing)."
28fn make_sentinel(mime : String, b64 : String) : String do
lib/scroll/pdf.march:12
9-- with a download link as fallback.
10
11mod ScrollPdf do
12 needs IO.Console
13
14doc "Build the raw sentinel string for a PDF blob (for testing / composing)."
15fn make_sentinel(b64 : String) : String do
lib/scroll/video.march:12
9-- The browser renders the blob as `<video controls src="data:<mime>;base64,<b64>">`.
10
11mod ScrollVideo do
12 needs IO.Console
13
14doc "Build the raw sentinel string for a video blob (for testing / composing)."
15fn make_sentinel(mime : String, b64 : String) : String do