{"ScriptPreparationCode":null,"TestCases":[{"Name":"lodash uniq","Code":"const array = [1, 2, 3, 4, 5, 4, 3, 1, 6, 7, 7, 4, 8, 9, 2, 3, 4, 5, 1, 9, 5, 7, 2, 1];\r\nreturn _.uniq(array);","IsDeferred":false},{"Name":"new Set with spread","Code":"const array = [1, 2, 3, 4, 5, 4, 3, 1, 6, 7, 7, 4, 8, 9, 2, 3, 4, 5, 1, 9, 5, 7, 2, 1];\r\nreturn [...new Set(array)];","IsDeferred":false}]}