-
It would be very useful that _.deburr replaces Œ with Oe and œ with oe.
I tried to do it, but œ is not in https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table :(
(It is u…
-
node: v8.12.0
yarn: v1.9.4
The current npm version seems to be missing many files after an install:
```
mkdir test
cd test && yarn init
yarn add lodash
cd node_modules/lodash && ls
```
…
-
Hey @elderhsouza Thanks again for the awesome log suggestion 👋 & Hey All 😄
### So far I've decided to format the list like so
## Library
**Category**
- [x] link to snippet
**Legend**
…
-
I am trying to fix some filenames that have non-standard characters and I thought that `deburr` was going to be a big help. However, it doesn't have any effect on certain strings, i.e. (copy and paste…
-
I'm wondering if it would be appropriate to add the Latin-1 Supplement `µ` `\u0B5` ("micro sign") to `deburr`. It is listed it under "Latin-1 Punctuation and Symbols", but it "decomposes" to the visu…
-
I suggest there should be a function that does a bit more than `_.deburr` - it should replace all non latin1 characters with their latin1 counterparts (ą -> a) and remove those that have no counterpar…
-
It should be just 's'. See https://en.wikipedia.org/wiki/Long_s
-
When creating a custom build, it'd be nice to get the whole list of the methods that were excluded from it. Why? It was a surprise for me that `lodash minus="deburr"` created a build that also didn't …
-
When calling some string methods all diacritics are stripped (or in fact changed to their latin counterpart - exactly the behaviour of deburr method):
```javascript
_.camelCase('zażółć gęślą jaźń') …
-
I expect `_.startCase("ätzender döner")` to produce `"Ätzender Döner"` - instead I get `"Atzender Doner"`. Same with `kebapCase`, `snakeCase` and `camelCase`, while `capitalize` works.