jsArray

Splits on comma and creates a JS array

Created by: hackvertor
Installed 1 times

Category: Array

Created on: Thursday, October 31, 2024 at 12:25:30 PM

Updated on: Wednesday, January 22, 2025 at 11:08:08 AM

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