{"id":28385688,"url":"https://github.com/afrontend/csv-property","last_synced_at":"2025-06-26T12:31:32.187Z","repository":{"id":42843850,"uuid":"261064964","full_name":"afrontend/csv-property","owner":"afrontend","description":"CSV 파일 사용하여 다국어 JSON 파일 만들기","archived":false,"fork":false,"pushed_at":"2024-06-16T11:43:00.000Z","size":135,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-30T13:07:30.177Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://agvim.wordpress.com/2020/05/10/use-csv-file-for-i18n/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/afrontend.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-05-04T02:38:49.000Z","updated_at":"2023-05-10T09:47:25.000Z","dependencies_parsed_at":"2023-01-31T15:45:19.528Z","dependency_job_id":null,"html_url":"https://github.com/afrontend/csv-property","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/afrontend/csv-property","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afrontend%2Fcsv-property","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afrontend%2Fcsv-property/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afrontend%2Fcsv-property/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afrontend%2Fcsv-property/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/afrontend","download_url":"https://codeload.github.com/afrontend/csv-property/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afrontend%2Fcsv-property/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262067889,"owners_count":23253692,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2025-05-30T11:14:42.596Z","updated_at":"2025-06-26T12:31:32.179Z","avatar_url":"https://github.com/afrontend.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.svg?v=103)](https://opensource.org/licenses/mit-license.php)\n# csv-property\nConvert CSV string to JSON object\n\nConvert JSON object to CSV string\n\nCSV string: \"path1, path2, path3, string\"\n\n```javascript\n// From\n'popup, title, Login'\n\n// To\n{\n  popup: {\n    title: 'Login'\n  }\n}\n```\n\n## Install\n```sh\nnpm install csv-property\n```\n\n## Usage\n```javascript\nconst { toObject, toCSVString } = require('csv-property')\ntoObject([ 'popup, title, Login' ]) // { popup: { title: 'Login' } }\ntoCSVString({ popup: { title: 'Login' } }) // [ 'popup, title, Login' ]\ntoObject([ 'popup; title; Login' ], ';') // { popup: { title: 'Login' } }\ntoCSVString({ popup: { title: 'Login' } }, ';') // [ 'popup; title; Login' ]\n```\n\n## License\nMIT © [Bob Hwang](https://afrontend.github.io)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafrontend%2Fcsv-property","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fafrontend%2Fcsv-property","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafrontend%2Fcsv-property/lists"}