Beau Dobbin
Beau Dobbin
@jdalton @danielo515 I created PR #228 to address this issue. What do you think? By the way, this is my first contribution to this repo. Please excuse any shortcomings in...
I have a proposal for a code sample that may help the documentation: ```js const Benchmark = require('benchmark'); const MIN_INPUT_SIZE = 1; const MAX_INPUT_SIZE = 10000; const INPUT_SIZE_INCREMENTOR = inputSize...
Thank you @simonsteinberg for your contribution to this project. 🤝 I agree with @dgrcode 's rationale. Perhaps a good feature for this repository might be to include _the path itself_...
@dgrcode I agree that a single file would be easier to navigate. But, thinking about the implementation... - It seems like we will need to update your _solution_ program to...
I also got an unexpected result when using `_.sortBy` with the above mentioned comparison function. ```js function byLocaleCompare(a, b) { return a.localeCompare(b, "de", { sensitivity: "base" }); } console.log(_.sortBy(["Barney", "Fred",...
Thank you, @illuminist .