import opairs from require 'lib.ordered' element = (element) -> (...) -> children = { ... } -- attributes are last arguments but mustn't be a ReactiveVar attributes = children[#children] if 'table' == (type attributes) and not attributes.node table.remove children else attributes = {} b = "<#{element}" for k,v in opairs attributes if k == 'style' and 'table' == type v tmp = '' for kk, vv in opairs v tmp ..= "#{kk}: #{vv}; " v = tmp b ..= " #{k}=\"#{v}\"" -- if there is only one argument, -- children can be in attributes table too if #children == 0 children = attributes b ..= ">" .. table.concat children, '' b ..= "" b setmetatable {}, __index: (name) => with val = element name @[name] = val