Module:User:Benwing2/test-split-on-comma

Hello, you have come here looking for the meaning of the word Module:User:Benwing2/test-split-on-comma. In DICTIOUS you will not only get to know all the dictionary meanings for the word Module:User:Benwing2/test-split-on-comma, but we will also tell you about its etymology, its characteristics and you will know how to say Module:User:Benwing2/test-split-on-comma in singular and plural. Everything you need to know about the word Module:User:Benwing2/test-split-on-comma you have here. The definition of the word Module:User:Benwing2/test-split-on-comma will help you to be more precise and correct when speaking or writing your texts. Knowing the definition ofModule:User:Benwing2/test-split-on-comma, as well as those of other words, enriches your vocabulary and provides you with more and better linguistic resources.

This is a private module sandbox of Benwing2, for their own experimentation. Items in this module may be added and removed at Benwing2's discretion; do not rely on this module's stability.


local export = {}

function export.test(frame)
	local str = type(frame) == "string" and frame or frame.args
	local split = require("Module:User:Benwing2/parse utilities").split_on_comma(str)
	return mw.dumpObject(split)
end

return export