Skip to content
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

Decamelize result did not match the inverse of camelcase result #42

Open
ntnyq opened this issue Oct 30, 2022 · 0 comments
Open

Decamelize result did not match the inverse of camelcase result #42

ntnyq opened this issue Oct 30, 2022 · 0 comments

Comments

@ntnyq
Copy link

ntnyq commented Oct 30, 2022

Reproduction:

const camelcase = require('camelcase');
const decamelize = require('decamelize');

console.log(camelcase('a_b_c')); // Output: aBC

// Expected output: a_b_c
console.log(decamelize('aBC'));  // Output: a_bc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant