Ilya Tsuryev

Results 3 comments of Ilya Tsuryev

> Sidenote, we need to ensure that key in basket-- does not contain the separator character -. Why? Please note that we can not change the first `basket-` part as...

`basket-foo-bar-baz-{}` We can write it like this: `basket-foo-bar-baz\t{}` This way we have: `` ``` = basket- = foo-bar-baz = \t ``` > Can you clarify? I'm not sure I see...

Iteration itself is ok, splitting, splitting and checking is not so. > We do a regex for matching the key: new RegExp('basket-' + key). Then iterate and check. Indeed, we...