src/ltn12.lua: remove duplicated codes

master
david 2022-02-01 15:40:35 +09:00 committed by Thijs Schreijer
parent a36818d3f3
commit 46ecb7e2dc
1 changed files with 3 additions and 3 deletions

View File

@ -11,6 +11,8 @@ local string = require("string")
local table = require("table")
local unpack = unpack or table.unpack
local base = _G
local select = select
local _M = {}
if module then -- heuristic for exporting a global package table
ltn12 = _M -- luacheck: ignore
@ -22,8 +24,6 @@ _M.source = source
_M.sink = sink
_M.pump = pump
local unpack = unpack or table.unpack
-- 2048 seems to be better in windows...
_M.BLOCKSIZE = 2048
_M._VERSION = "LTN12 1.0.3"
@ -45,7 +45,7 @@ end
-- (thanks to Wim Couwenberg)
function filter.chain(...)
local arg = {...}
local n = base.select('#',...)
local n = select('#',...)
local top, index = 1, 1
local retry = ""
return function(chunk)