JSON Nested Array Flattener
Take a deeply-nested JSON array like [1, [2, [3, [4]], 5], 6] and flatten to [1, 2, 3, 4, 5, 6]. Configurable max depth (default: infinite), optional deduplication. Browser-only.
Take a deeply-nested JSON array like [1, [2, [3, [4]], 5], 6] and flatten to [1, 2, 3, 4, 5, 6]. Configurable max depth (default: infinite), optional deduplication. Browser-only.