Guangcong Luo
Guangcong Luo
Heya, just poking to make sure you didn't forget.
I think you're discussing all this in the wrong place. This is an abandoned proposal; look at the README; it's been superseded by https://github.com/tc39/proposal-relative-indexing-method
I'd like to chime in with support for `.get(-1)` and `.set(-1, value)` - they allow access to arbitrary distances from the end, not just the last value - they're consistent...
@atg There are some examples in #1, for instance: ```js const array = [1, 2, 3]; const itemIndex = array.indexOf(5); // -1 if (array[itemIndex]) { // ... } ``` would...
Yeah, I think that was the "I remember there were arguments against those methods, but forgot what they were". I think this would be very worth it, even renamed for...
Periodic reminder that `.get(-1)` (#23) solves this problem. ;)
I'm getting a link to the build log on newer pull requests, unfortunately the link doesn't work: https://github.com/Zarel/Pokemon-Showdown/pull/5113#issuecomment-455563376 The link is to `travis-ci.org`, but the correct URL is `travis-ci.com`.
(Also, I'd prefer the log itself, rather than just a link.)
I haven't heard any updates for a while. I'll disable TravisBuddy soon since it's not doing anything for my repo. But if you want me to do something else, I'd...
This also uses Sync methods which it really shouldn't, and the API isn't Promise when it should be.