{"id":16484470,"url":"https://github.com/winston0410/uncurry","last_synced_at":"2026-07-19T17:32:09.538Z","repository":{"id":53692154,"uuid":"298757335","full_name":"winston0410/uncurry","owner":"winston0410","description":"A package that helps you uncurry curried functions for performance boost.","archived":false,"fork":false,"pushed_at":"2025-07-25T09:23:55.000Z","size":354,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-20T03:32:56.807Z","etag":null,"topics":["javascript","purescript","uncurry","uncurry-curried-functions"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/winston0410.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-09-26T07:02:12.000Z","updated_at":"2020-10-18T16:20:56.000Z","dependencies_parsed_at":"2024-11-12T13:41:06.126Z","dependency_job_id":"1d509199-ab7a-401d-a4e3-13099944c79e","html_url":"https://github.com/winston0410/uncurry","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/winston0410/uncurry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winston0410%2Funcurry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winston0410%2Funcurry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winston0410%2Funcurry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winston0410%2Funcurry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/winston0410","download_url":"https://codeload.github.com/winston0410/uncurry/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/winston0410%2Funcurry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35661223,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-19T02:00:06.923Z","response_time":112,"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":["javascript","purescript","uncurry","uncurry-curried-functions"],"created_at":"2024-10-11T13:17:13.732Z","updated_at":"2026-07-19T17:32:09.513Z","avatar_url":"https://github.com/winston0410.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Uncurry\n\n[![Known Vulnerabilities](https://snyk.io/test/github/winston0410/uncurry/badge.svg?targetFile=package.json)](https://snyk.io/test/github/winston0410/uncurry?targetFile=package.json) [![Maintainability](https://api.codeclimate.com/v1/badges/8503697bcf569800b298/maintainability)](https://codeclimate.com/github/winston0410/uncurry/maintainability) [![Test Coverage](https://api.codeclimate.com/v1/badges/8503697bcf569800b298/test_coverage)](https://codeclimate.com/github/winston0410/uncurry/test_coverage) [![Codacy Badge](https://app.codacy.com/project/badge/Grade/167e407501e24a79a4f8e43a9c78e470)](https://www.codacy.com/manual/winston0410/uncurry/dashboard?utm_source=github.com\u0026utm_medium=referral\u0026utm_content=winston0410/uncurry\u0026utm_campaign=Badge_Grade)\n\nA package that helps you uncurry curried functions for performance boost.\n\n```javascript\n//Before transformation\n\n//Curried function\nconst curriedFn = (param1) =\u003e (param2) =\u003e param1\n\n//Partial application\nconst partialApplication = curriedFn('Hello')\n```\n\n```javascript\n//After transformation\n\n//Curried function\nconst curriedFn = (param1, param2) =\u003e param1\n\n//Partial application\n//The partially applied parameter will be reduced from both the head and the body of the function.\nconst partialApplication = (param2) =\u003e 'Hello'\n```\n\n## Installation\n\nTODO \u003c!--\n\n## API Reference\n\n### `options.curriedFunction` : Boolean\n\nSet this option to `True` to uncurry curried functions. Default to `True`.\n\n### `options.partialApplication` : Boolean\n\nSet this option to `True` to reduce partial applications. Default to `True`. --\u003e \n\n\u003c!-- ## Performance Benchmarking https://jsben.ch/dMZpf --\u003e\n\n ## Acknowledgement\n\nThis project would not exist without the help from the community of Purescript, and I am especially thankful for the following individuals for their advices.\n\n[hdgarrood](https://github.com/hdgarrood)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwinston0410%2Funcurry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwinston0410%2Funcurry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwinston0410%2Funcurry/lists"}