summaryrefslogtreecommitdiff
path: root/qw.lua
diff options
context:
space:
mode:
Diffstat (limited to 'qw.lua')
-rw-r--r--qw.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/qw.lua b/qw.lua
index b91f9b0..bedfb46 100644
--- a/qw.lua
+++ b/qw.lua
@@ -14,5 +14,7 @@ local function qws(str)
end
return out
end
+-- for k in qw.i"aaa bbb ccc" do ... end
local function qwi(str) return pairs(qws(str)) end
+
return setmetatable({qw=qw,s=qws,i=qwi},{__call=function(_,...) return qw(...) end})