feat(new-tool): csv to json converter

This commit is contained in:
Eduardo Maldonado 2024-04-12 01:07:38 -06:00
parent d3b32cc14e
commit 9dca9c3cb8
12 changed files with 212 additions and 6 deletions

View file

@ -21,6 +21,7 @@ import { tool as jsonToToml } from './json-to-toml';
import { tool as tomlToYaml } from './toml-to-yaml';
import { tool as tomlToJson } from './toml-to-json';
import { tool as jsonToCsv } from './json-to-csv';
import { tool as csvToJson } from './csv-to-json';
import { tool as cameraRecorder } from './camera-recorder';
import { tool as listConverter } from './list-converter';
import { tool as phoneParserAndFormatter } from './phone-parser-and-formatter';
@ -143,6 +144,7 @@ export const toolsByCategory: ToolCategory[] = [
jsonViewer,
jsonMinify,
jsonToCsv,
csvToJson,
sqlPrettify,
chmodCalculator,
dockerRunToDockerComposeConverter,