unique

This tags splits on comma and removes any duplicates.

Created by: hackvertor
Installed 1 times

Category: Array

Created on: Monday, October 7, 2024 at 9:46:06 PM

Updated on: Friday, December 20, 2024 at 8:08:05 PM

This is a built in tag
Tag arguments
[]
Code
class unique {
  encode(input) {
    return [...new Set(input.split(","))];
  }
}