feat: add CSV to XML conversion tool with customizable options

This commit is contained in:
ARRY7686
2025-03-19 00:02:25 +05:30
parent 64e1dd5b83
commit f4f09f4852
4 changed files with 224 additions and 1 deletions

View File

@@ -1,3 +1,4 @@
import { tool as csvToJson } from './csv-to-json/meta';
import { tool as csvToXml } from './csv-to-xml/meta';
export const csvTools = [csvToJson];
export const csvTools = [csvToJson, csvToXml];