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: Friday, May 9, 2025 at 8:01:07 AM

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