{"id":37126183,"url":"https://github.com/gotilty/gotil","last_synced_at":"2026-01-14T14:35:02.615Z","repository":{"id":40506039,"uuid":"474363356","full_name":"gotilty/gotil","owner":"gotilty","description":"lodash inspired utility library for go","archived":false,"fork":false,"pushed_at":"2023-08-04T20:57:09.000Z","size":355,"stargazers_count":9,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-19T06:56:46.718Z","etag":null,"topics":["array","functional","go","golang","helpers","lodash","programming","slice","utility"],"latest_commit_sha":null,"homepage":"https://gotilty.github.io/gotil","language":"Go","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/gotilty.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":"2022-03-26T13:56:57.000Z","updated_at":"2023-12-05T06:27:54.000Z","dependencies_parsed_at":"2022-07-29T00:48:34.220Z","dependency_job_id":null,"html_url":"https://github.com/gotilty/gotil","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/gotilty/gotil","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotilty%2Fgotil","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotilty%2Fgotil/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotilty%2Fgotil/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotilty%2Fgotil/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gotilty","download_url":"https://codeload.github.com/gotilty/gotil/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gotilty%2Fgotil/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28423671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["array","functional","go","golang","helpers","lodash","programming","slice","utility"],"created_at":"2026-01-14T14:35:01.948Z","updated_at":"2026-01-14T14:35:02.598Z","avatar_url":"https://github.com/gotilty.png","language":"Go","readme":"# gotil\n\n[methods](https://github.com/gotilty/gotil/wiki/methods) | [wiki](https://github.com/gotilty/gotil/wiki) | [documentation](https://gotilty.github.io/gotil/#/) \n\n\n\nlodash inspired utility library for go\n\n\n\n\u003cimg src=\"images/gotil.png\" width=\"250\" height=\"100\" style=\"display: block; margin: 0 auto\"\u003e\n\n\n------------\n\n\n[![Build Status](https://scrutinizer-ci.com/g/gotilty/gotil/badges/build.png?b=master)](https://scrutinizer-ci.com/g/gotilty/gotil/build-status/master)\n[![CodeFactor](https://www.codefactor.io/repository/github/gotilty/gotil/badge)](https://www.codefactor.io/repository/github/gotilty/gotil)\n[![Go Report Card](https://goreportcard.com/badge/github.com/gotilty/gotil)](https://goreportcard.com/report/github.com/gotilty/gotil)\n![Scrutinizer code quality (GitHub/Bitbucket)](https://img.shields.io/scrutinizer/quality/g/gotilty/gotil/master)\n![GitHub](https://img.shields.io/github/license/gotilty/gotil)\n![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/gotilty/gotil)\n\n------------\n## ⚙️ Installation\n\nMake sure you have Go installed ([download](https://go.dev/dl/)). Version `1.18` or higher is required.\n\nInitialize your project by creating a folder and then running `go mod init github.com/your/repo` ([learn more](https://go.dev/blog/using-go-modules)) inside the folder. Then install Gotil with the [`go get`](https://pkg.go.dev/cmd/go/#hdr-Add_dependencies_to_current_module_and_install_them) command:\n\n```bash\ngo get -u github.com/gotilty/gotil\n```\n\n## Run on Local\n\n### Step 1: git clone this repository [gotilty/gotil@github](https://github.com/gotilty/gotil)\n\n```\ngit clone https://github.com/gotilty/gotil.git\n```\n\nGo to project folder\n\n```\ncd gotil\n```\n\n### Step 2: run test\n\n```\ngo test -v ./...\n```\n\n### Step 3: run benchmarks\n\n```\ngo test -v ./... -bench=. -run=xxx -benchmem\n```\n\n## 🎯 Why GOtil?\n\nGOtil makes go easier by taking the hassle out of working with arrays,\nnumbers, objects, strings, etc. GOtil's modular methods are great for:\n\n- Iterating arrays, objects, \u0026 strings\n- Manipulating \u0026 testing values\n- Creating composite functions\n\n## 👀 Examples\n\nListed below are some of the common examples. If you want to see more code examples , please visit our [Recipes repository](https://github.com/gotilty/gotil) or visit our hosted [API documentation](https://gotilty.github.io/gotil/#/).\n\n#### 📖 [**Each**]\n\n```go\ngotil.Each([]string{\"gotilty\", \"gotil\"}, func(v string) {\n\tfmt.Fprint(os.Stdout, v)\n})\n// Output: gotiltygotil\n```\n\n\n\n## TODO\n\n- [x] Readme File\n- [x] Go Doc\n- [x] ApiDoc\n- [x] Tests\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgotilty%2Fgotil","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgotilty%2Fgotil","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgotilty%2Fgotil/lists"}