{"ScriptPreparationCode":"var a = \u0022this test is going to be an absolute unit of a thing and I can guarantee a riot\u0022.split(\u0027 \u0027);\r\nvar b = \u0022this test could possibly work out for many of us but will be a riot\u0022.split(\u0027 \u0027);","TestCases":[{"Name":"uniq spread","Code":"return _.uniq([...a,...b]);","IsDeferred":false},{"Name":"set spread","Code":"return [...new Set([...a,...b])];","IsDeferred":false},{"Name":"uniq _concat","Code":"return _.uniq(_.concat(a,b));","IsDeferred":false},{"Name":"set _concat","Code":"return [...new Set(_.concat(a,b))];","IsDeferred":false},{"Name":"uniq [concat]","Code":"return _.uniq(a.concat(b));","IsDeferred":false},{"Name":"set [concat]","Code":"return [...new Set(a.concat(b))];","IsDeferred":false}]}