{"id":23280538,"url":"https://github.com/alwint3r/any-to-csv","last_synced_at":"2026-04-16T02:32:20.756Z","repository":{"id":76135933,"uuid":"519830917","full_name":"alwint3r/any-to-csv","owner":"alwint3r","description":"Convert any data to CSV format","archived":false,"fork":false,"pushed_at":"2022-07-31T17:03:54.000Z","size":1,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-31T05:42:19.972Z","etag":null,"topics":["deno","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/alwint3r.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-31T16:37:48.000Z","updated_at":"2022-08-01T02:23:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"5dfef723-cb7d-425f-860c-f9507a41192c","html_url":"https://github.com/alwint3r/any-to-csv","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/alwint3r/any-to-csv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwint3r%2Fany-to-csv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwint3r%2Fany-to-csv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwint3r%2Fany-to-csv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwint3r%2Fany-to-csv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alwint3r","download_url":"https://codeload.github.com/alwint3r/any-to-csv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alwint3r%2Fany-to-csv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31868495,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"online","status_checked_at":"2026-04-16T02:00:06.042Z","response_time":69,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deno","typescript"],"created_at":"2024-12-19T23:36:33.447Z","updated_at":"2026-04-16T02:32:20.716Z","avatar_url":"https://github.com/alwint3r.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Any Data to CSV\n\nConvert any kind of data to a CSV format with a straightforward API.\n\n## Supported Platforms\n\n* Deno\n\n## Usage\n\n```ts\nimport { toCsv, HeaderSpec, CsvDataValue } from 'https://raw.githubusercontent.com/alwint3r/any-to-csv/main/mod.ts';\n\nconst data = [\n    { name: 'Anakin', job: 'Padawan' },\n    { name: 'Obi-Wan', job: 'Jedi Master' },\n];\n\nconst headers: HeaderSpec[] = [\n    { name: 'name', as: 'Name', transform: (value: CsvDataValue) =\u003e (value as string).toUpperCase() },\n    { name: 'job', as: 'Job' },\n];\n\nconst csv = toCsv(data, headers);\n\nconsole.log(csv);\n// will print\n\n// Name,Job\n// ANAKIN,Padawan\n// OBI-WAN,Jedi Master\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falwint3r%2Fany-to-csv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falwint3r%2Fany-to-csv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falwint3r%2Fany-to-csv/lists"}