{"id":14984954,"url":"https://github.com/yurkimus/functions","last_synced_at":"2026-01-28T21:01:15.626Z","repository":{"id":250043977,"uuid":"832674974","full_name":"yurkimus/functions","owner":"yurkimus","description":"JavaScript-oriented utilities for functional programming","archived":false,"fork":false,"pushed_at":"2024-11-28T22:47:33.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T00:41:59.071Z","etag":null,"topics":["deno","functional-programming","javascript","node","utilities"],"latest_commit_sha":null,"homepage":"","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/yurkimus.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-23T13:50:11.000Z","updated_at":"2024-11-28T22:47:37.000Z","dependencies_parsed_at":"2024-08-27T15:12:07.684Z","dependency_job_id":"5c9989c9-6017-4fd0-8ba9-ca6a0c0ad17d","html_url":"https://github.com/yurkimus/functions","commit_stats":{"total_commits":17,"total_committers":2,"mean_commits":8.5,"dds":0.05882352941176472,"last_synced_commit":"fa7048ce0ae0b1ed9be692cb2d4d76746d2d099c"},"previous_names":["yurkimus/functions"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/yurkimus/functions","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurkimus%2Ffunctions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurkimus%2Ffunctions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurkimus%2Ffunctions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurkimus%2Ffunctions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yurkimus","download_url":"https://codeload.github.com/yurkimus/functions/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yurkimus%2Ffunctions/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28851838,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T15:15:36.453Z","status":"ssl_error","status_checked_at":"2026-01-28T15:15:13.020Z","response_time":57,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","functional-programming","javascript","node","utilities"],"created_at":"2024-09-24T14:09:54.989Z","updated_at":"2026-01-28T21:01:15.594Z","avatar_url":"https://github.com/yurkimus.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Functions\n\nJavaScript-oriented utilities for functional programming.\n\nFunctions with arity more than 1 are curried.\n\n## Table of Contents\n\n- [Installation](#installation)\n- [Requirements](#requirements)\n- [Exports](#exports)\n  - [always](#always)\n  - [apply](#apply)\n  - [asynchronous](#asynchronous)\n  - [construct](#construct)\n  - [defer](#defer)\n  - [effect](#effect)\n  - [has](#has)\n  - [identity](#identity)\n  - [partial](#partial)\n  - [prop](#prop)\n- [License](#license)\n\n## Installation\n\n### npm\n\n```\nnpm install @yurkimus/functions\n```\n\n### urls\n\n```\n\"@yurkimus/functions\": \"npm:@yurkimus/functions\"\n```\n\n```\n\"@yurkimus/functions\": \"github:yurkimus/functions\"\n```\n\n```\n\"@yurkimus/functions\": \"https://raw.githubusercontent.com/yurkimus/functions/main/source/index.js\"\n```\n\n## Requirements\n\nModules:\n\n- [@yurkimus/curry](https://github.com/yurkimus/curry)\n- [@yurkimus/types](https://github.com/yurkimus/types)\n\nRuntime:\n\n- [Array.prototype.at](https://262.ecma-international.org/15.0/index.html#sec-array.prototype.at)\n- [Array.prototype.reduce](https://262.ecma-international.org/15.0/index.html#sec-array.prototype.reduce)\n- [Array.prototype.slice](https://262.ecma-international.org/15.0/index.html#sec-array.prototype.slice)\n- [Array.prototype.[@@iterator]](https://262.ecma-international.org/15.0/index.html#sec-array.prototype-@@iterator)\n- [Function.prototype.bind](https://262.ecma-international.org/15.0/index.html#sec-function.prototype.bind)\n- [Reflect.construct](https://262.ecma-international.org/15.0/index.html#sec-reflect.construct)\n- [Optional chains (?.)](https://262.ecma-international.org/15.0/index.html#sec-optional-chains)\n\n## Exports\n\n### always\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### apply\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### asynchronous\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### construct\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### defer\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### effect\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### has\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### identity\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### partial\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n### prop\n\n#### Definition\n\n```js\n```\n\n#### Example\n\n```js\n```\n\n## License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurkimus%2Ffunctions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyurkimus%2Ffunctions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyurkimus%2Ffunctions/lists"}