{"id":19362490,"url":"https://github.com/victor-enogwe/js-string-class-ui","last_synced_at":"2026-04-12T09:45:17.977Z","repository":{"id":122318523,"uuid":"76804696","full_name":"victor-enogwe/js-string-class-ui","owner":"victor-enogwe","description":"Extending the String class in Javascript using Prototype Oriented Programming  methods","archived":false,"fork":false,"pushed_at":"2017-02-07T05:18:33.000Z","size":2637,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-02-24T12:50:15.606Z","etag":null,"topics":["angularjs","javascript","mocha","nodejs","oop"],"latest_commit_sha":null,"homepage":null,"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/victor-enogwe.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}},"created_at":"2016-12-18T20:20:37.000Z","updated_at":"2022-01-06T15:11:50.000Z","dependencies_parsed_at":null,"dependency_job_id":"fcd7928b-b07f-4adc-aa96-bb2d689be612","html_url":"https://github.com/victor-enogwe/js-string-class-ui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-enogwe%2Fjs-string-class-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-enogwe%2Fjs-string-class-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-enogwe%2Fjs-string-class-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-enogwe%2Fjs-string-class-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/victor-enogwe","download_url":"https://codeload.github.com/victor-enogwe/js-string-class-ui/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/victor-enogwe%2Fjs-string-class-ui/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259262623,"owners_count":22830560,"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":["angularjs","javascript","mocha","nodejs","oop"],"created_at":"2024-11-10T07:28:29.512Z","updated_at":"2026-04-12T09:45:17.942Z","avatar_url":"https://github.com/victor-enogwe.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# String Class \n[![Build Status](https://travis-ci.org/andela-venogwe/Checkpoint02-String-Class.svg?branch=master)](https://travis-ci.org/andela-venogwe/Checkpoint02-String-Class) [![Code Climate](https://codeclimate.com/github/andela-venogwe/Checkpoint02-String-Class/badges/gpa.svg)](https://codeclimate.com/github/andela-venogwe/Checkpoint02-String-Class) [![Test Coverage](https://codeclimate.com/github/andela-venogwe/Checkpoint02-String-Class/badges/coverage.svg)](https://codeclimate.com/github/andela-venogwe/Checkpoint02-String-Class/coverage) [![Issue Count](https://codeclimate.com/github/andela-venogwe/Checkpoint02-String-Class/badges/issue_count.svg)](https://codeclimate.com/github/andela-venogwe/Checkpoint02-String-Class)\n\nA javascript App that extends the String class in Javascript, using Prototype Oriented Programming. Methods, procedures and instance attributes are added to the String class to support more string manipulation features.\n\n## Technologies\n- node ^4\n- javascript(ECMAScript 2015) \n- Angularjs\n- Html5\n- Css3\n- Jade\n- Express\n- Mocha\n- Chai\n- Gulp\n\n## Local Development\n- Clone the repository to your computer\n- Navigate to the project folder using your terminal(eg. `cd string-class`)\n- Install npm dependencies `npm install`\n- Start a local server `npm start`\n- To run the mocha test for the app use: `npm test`\n\n## Web Deployment\n- Use the App online by visiting the link https://v-string-class.herokuapp.com/\n- deploy the app automatically to your heroku account by clicking the button below\n- [![Deploy](https://www.herokucdn.com/deploy/button.svg)](https://heroku.com/deploy?template=https://github.com/andela-venogwe/Checkpoint02-String-Class/tree/develop)\n\n## New Methods\n1. hasVowels() - Returns a Boolean (True if this String contains an English vowel, otherwise False)\n2. toUpper() - Returns this String with all it's lower case English alphabets converted to upper case\n3. toLower() - Returns this String with all it's upper case English alphabets converted to lower case\n4. ucFirst() - Returns this String but changes the first character (if it's an English alphabet) to an upper case\n5. isQuestion() - Returns a Boolean (True if the string ends with a question mark, otherwise False.\n6. words() - Returns a list of the words in the String, as an Array\n7. wordCount() - Returns the number of words in the string\n8. toCurrency() - Returns a currency representation of the String.\n9. fromCurrency() - Returns a number representation of the Currency String\n10. inverseCase() - Returns each of the English letter in the string as an inverse of its current case\n11. alternatingCase() - Returns the letters in alternating cases, starting with a lower case.\n12. getMiddle() - Returns the character(s) in the middle of the string\n13. numberWords() - Returns the numbers in words e.g 325 should return three two five\n14. isDigit() - Returns a Boolean. True if the String is a digit(one number), otherwise False\n15. doubleCheck() - Returns a Boolean. True if the String contains double characters(including whitespace character), otherwise False.\n\n### Limitations\n- This is not a standalone class, it is an extension of the default Javascript String class\n\n### Contributing\n1. Fork this repository\n2. Clone your repository: git clone git@github.com:your-username/Checkpoint02-String-Class.git\n3. Create your feature branch: git checkout -b awesome-feature\n4. Commit your changes: git commit -m \"your commit message\"\n5. Push to the remote branch: git push origin awesome-feature\n6. Open a Pull Request.\n\n### License\n- MIT","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictor-enogwe%2Fjs-string-class-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvictor-enogwe%2Fjs-string-class-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvictor-enogwe%2Fjs-string-class-ui/lists"}