{"id":19149544,"url":"https://github.com/taidalog/fermata","last_synced_at":"2025-06-20T13:33:46.019Z","repository":{"id":65226616,"uuid":"581800661","full_name":"taidalog/Fermata","owner":"taidalog","description":"An F# helper library for working with values of basic types in F#. Compatible with Fable.","archived":false,"fork":false,"pushed_at":"2024-01-04T10:49:36.000Z","size":286,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-10T20:46:30.695Z","etag":null,"topics":["fable","fsharp","helper","library","miscellaneous"],"latest_commit_sha":null,"homepage":"https://www.nuget.org/packages/Fermata","language":"F#","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/taidalog.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}},"created_at":"2022-12-24T11:38:18.000Z","updated_at":"2024-01-04T10:34:33.000Z","dependencies_parsed_at":"2023-01-15T17:00:39.462Z","dependency_job_id":"b915aa0b-bfcb-426b-816b-4b17554240ec","html_url":"https://github.com/taidalog/Fermata","commit_stats":{"total_commits":47,"total_committers":1,"mean_commits":47.0,"dds":0.0,"last_synced_commit":"61b59e64ee96bf1f0f3506be0b6b1249a8ce6907"},"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/taidalog/Fermata","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taidalog%2FFermata","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taidalog%2FFermata/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taidalog%2FFermata/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taidalog%2FFermata/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taidalog","download_url":"https://codeload.github.com/taidalog/Fermata/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taidalog%2FFermata/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260953602,"owners_count":23088066,"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":["fable","fsharp","helper","library","miscellaneous"],"created_at":"2024-11-09T08:08:36.231Z","updated_at":"2025-06-20T13:33:41.002Z","avatar_url":"https://github.com/taidalog.png","language":"F#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fermata\n\nAn F# helper library for working with values of basic types in F#. Compatible with Fable.\n\nVersion 1.0.0\n\n## Features\n\n- Provides functions for working with values of basic types in F#.\n- Works in a Fable project.\n\n## Target Frameworks\n\n- .NET Standard 2.0\n- .NET 6\n- .NET 7\n- .NET 8\n\n## Modules\n\n- Array  \n   Contains helper functions for working with values of type array.\n- Bool  \n   Contains helper functions for working with values of type bool.\n- Bound  \n   Contains helper functions for working with values of number types such as int or float, and lower and upper bounds.\n- Int32  \n   Contains helper functions for working with values of type int (.NET wrapper functions).\n- List  \n   Contains helper functions for working with values of type list.\n- Regex  \n   Contains wrapper functions for .Net System.Text.RegularExpressions.\n- Result  \n   Contains helper functions for working with values of type Result.\n- Seq  \n   Contains helper functions for working with values of type seq.\n- String  \n   Contains helper functions for working with values of type string.\n- Tuple  \n   Contains helper functions for working with values of tuples.\n- Validators  \n   Contains helper functions for validation which return values of type Result.\n\nFor more information, see each signature file (`.fsi`).\n\n## Installation\n\n.NET CLI,\n\n```\ndotnet add package Fermata --version 1.0.0\n```\n\nF# Intaractive,\n\n```\n#r \"nuget: Fermata, 1.0.0\"\n```\n\nFor more information, please see [Fermata on NuGet Gallery](https://www.nuget.org/packages/Fermata).\n\n## Notes\n\n- Don't forget `npm start` before using Fermata in a Fable project. I forgot!\n\n## Known Issue\n\n-\n\n## Release Notes\n\n[Releases on GitHub](https://github.com/taidalog/Fermata/releases)\n\n## Breaking Changes\n\n### 1.0.0\n\n- Removed `RadixConversion` module from Fermata. The module is now separated as a single module [Fermata.RadixConversion](https://github.com/taidalog/Fermata.RadixConversion).\n- Removed `Exceptions` module from Fermata. Now functions in Fermata return the built-in exceptions instead of `Fermata.Exceptions`.\n- Some functions are renamed.\n  - `Array.countWith` -\u003e `Array.count`\n  - `Array.filterIndexPair` -\u003e `Array.filterIndexed`\n  - `Array.splits` -\u003e `Array.splitWith`\n  - `Array.splitWith` -\u003e `Array.splitFind`\n  - `List.countWith` -\u003e `List.count`\n  - `List.filterIndexPair` -\u003e `List.filterIndexed`\n  - `List.splits` -\u003e `List.splitWith`\n  - `List.splitWith` -\u003e `List.splitFind`\n  - `Seq.countWith` -\u003e `Seq.count`\n  - `Seq.filterIndexPair` -\u003e `Seq.filterIndexed`\n  - `Seq.splits` -\u003e `Seq.splitWith`\n  - `Seq.splitWith` -\u003e `Seq.splitFind`\n  - `String.splitWith` -\u003e `String.splitFind`\n\n### 0.6.0\n\n- Functions in `Dec` module return values of type `Dec`, a discrinimated union to represent a decimal number. Those functions used to return values of type `string`, `string option` or `Result\u003cint, exn\u003e`.\n- Functions in `Bin` module return values of type `Bin`, a discrinimated union to represent a binary number. Those functions used to return values of type `int`, `int option` or `Result\u003cstring, exn\u003e`.\n- Functions in `Hex` module return values of type `Hex`, a discrinimated union to represent a hexadecimal number. Those functions used to return values of type `int`, `int option` or `Result\u003cstring, exn\u003e`.\n\n## Links\n\n- [Repository on GitHub](https://github.com/taidalog/Fermata)\n- [NuGet Gallery](https://www.nuget.org/packages/Fermata)\n\n## License\n\nThis product is licensed under the [MIT license](https://github.com/taidalog/Fermata/blob/main/LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaidalog%2Ffermata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaidalog%2Ffermata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaidalog%2Ffermata/lists"}