MCPcopy Index your code
hub / github.com/di-sukharev/opencommit / isomorphicDecode

Function isomorphicDecode

out/cli.cjs:50962–50967  ·  view source on GitHub ↗
(input)

Source from the content-addressed store, hash-verified

50960 var ReadableStream7 = globalThis.ReadableStream;
50961 function isReadableStreamLike(stream4) {
50962 if (!ReadableStream7) {
50963 ReadableStream7 = require("stream/web").ReadableStream;
50964 }
50965 return stream4 instanceof ReadableStream7 || stream4[Symbol.toStringTag] === "ReadableStream" && typeof stream4.tee === "function";
50966 }
50967 var MAXIMUM_ARGUMENT_LENGTH = 65535;
50968 function isomorphicDecode(input) {
50969 if (input.length < MAXIMUM_ARGUMENT_LENGTH) {
50970 return String.fromCharCode(...input);

Callers 1

dataURLProcessorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…