-
-
Notifications
You must be signed in to change notification settings - Fork 836
feat: add string/base/stickycase
#1447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Implemented the stickycase function. This commit adds the stickycase function to the string module, which converts a string to 'sticky caps' case. BREAKING CHANGE: None
Corrected the JavaScript example in the README.md file to define the 'out' variable before assignment, preventing an 'out is not defined' error. Now the example runs correctly. No breaking changes introduced.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👋 Hi there! 👋
And thank you for opening your first pull request! We will review it shortly. 🏃 💨
string/base/stickycase
string/base/stickycase
string/base/stickycase
/stdlib update-copyright-years |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for opening this PR! There are a bunch of issues that will have to be addressed before this can be merged, but hopefully they should be straightforward to do.
lib/node_modules/@stdlib/string/base/stickycase/docs/types/index.d.ts
Outdated
Show resolved
Hide resolved
lib/node_modules/@stdlib/string/base/stickycase/docs/types/index.d.ts
Outdated
Show resolved
Hide resolved
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
…ex.d.ts Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
…t.ts Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
…ex.d.ts Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
…ex.d.ts Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
…t.ts Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Refactor test cases and add additional parameter validation Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com>
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com>
@anudeeps0306 CI is now passing and things look good; let's get this in! Thanks for your contribution! |
PR-URL: stdlib-js#1447 Closes: stdlib-js#852 --------- Signed-off-by: Anudeep Sanapala <71971574+anudeeps0306@users.noreply.github.com> Signed-off-by: Philipp Burckhardt <pburckhardt@outlook.com> Co-authored-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com> Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
Resolves #852
Description
This PR adds implementation for @stdlib/string/base/stickycase
Related Issues
This pull request:
@stdlib/string/base/stickycase
#852Questions
No.
Other
No.
Checklist
@stdlib-js/reviewers