mirror of
https://github.com/lunarmodules/luasocket.git
synced 2025-04-05 00:16:47 +02:00
12 lines
233 B
Lua
12 lines
233 B
Lua
function filter.cycle(lowlevel, context, extra)
|
|
return function(chunk)
|
|
local ret
|
|
ret, context = lowlevel(context, chunk, extra)
|
|
return ret
|
|
end
|
|
end
|
|
|
|
function normalize(marker)
|
|
return filter.cycle(eol, 0, marker)
|
|
end
|