{"id":23072475,"url":"https://github.com/doches/angular-decamel-filter","last_synced_at":"2026-02-02T23:11:17.182Z","repository":{"id":58215023,"uuid":"51188135","full_name":"doches/angular-decamel-filter","owner":"doches","description":"An AngularJS filter for converting 'camelCaseStrings' to 'Camel Case Strings'","archived":false,"fork":false,"pushed_at":"2016-02-06T04:03:26.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2026-01-25T10:56:57.491Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"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/doches.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":"2016-02-06T03:40:49.000Z","updated_at":"2016-02-06T03:40:49.000Z","dependencies_parsed_at":"2022-09-06T23:30:56.854Z","dependency_job_id":null,"html_url":"https://github.com/doches/angular-decamel-filter","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/doches/angular-decamel-filter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doches%2Fangular-decamel-filter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doches%2Fangular-decamel-filter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doches%2Fangular-decamel-filter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doches%2Fangular-decamel-filter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/doches","download_url":"https://codeload.github.com/doches/angular-decamel-filter/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/doches%2Fangular-decamel-filter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29022775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T22:20:39.141Z","status":"ssl_error","status_checked_at":"2026-02-02T22:20:37.621Z","response_time":58,"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":[],"created_at":"2024-12-16T07:19:55.761Z","updated_at":"2026-02-02T23:11:17.164Z","avatar_url":"https://github.com/doches.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# angular-decamel-filter\n\nAn AngularJS filter (with no external dependencies) for converting\ncamelCaseStrings to \"Camel Case Strings\". Useful for quickly converting\nprogrammer-friendly keys to user-facing labels; I use it for creating\non-the-fly table headers.\n\n## Getting Started\n\n**(1)** Install using [Bower](http://bower.io/):\n\n```\nbower install angular-decamel-filter\n```\n\n**(2)** Include `angular-decamel-filter.js` in your index.html, somewhere after Angular itself.\n\n**(3)** Add `te.decamel` to your main module's list of dependencies.\n\nWhen you're done, your setup should look something like:\n\n```html\n\u003c!doctype html\u003e\n\u003chtml ng-app=\"myApp\"\u003e\n\u003chead\u003e\n\n\u003c/head\u003e\n\u003cbody\u003e\n    ...\n    \u003cscript src=\"http://cdnjs.cloudflare.com/ajax/libs/angular.js/1.3.0/angular.min.js\"\u003e\u003c/script\u003e\n    \u003cscript src=\"bower_components/angular-decamel-filter/src/angular-decamel-filter.js\"\u003e\u003c/script\u003e\n    ...\n    \u003cscript\u003e\n        var myApp = angular.module('myApp', ['te.decamel']);\n    \u003c/script\u003e\n    ...\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n## Usage\n\nUse `decamel` like you would any other string filter:\n\n```js\n// scopeVariable is \"fooBarBaz\"\n\u003ch1\u003e{{scopeVariable | decamel}}\u003c/h1\u003e\n```\n\n...to produce human-friendly output:\n\n```html\n\u003ch1\u003eFoo Bar Baz\u003c/h1\u003e\n```\n\nWant finer-grained control over your dedromedization? You can specify a custom delimiter, or disable initial capitalization:\n\n```js\n\u003ch1\u003e{{scopeVariable | decamel:'_':true}}\u003c/h1\u003e\n```\n\n...produces:\n\n```html\n\u003ch1\u003efoo_Bar_Baz\u003c/h1\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoches%2Fangular-decamel-filter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdoches%2Fangular-decamel-filter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdoches%2Fangular-decamel-filter/lists"}