4 Matching Annotations
- Oct 2021
-
github.com github.com
-
It's a grammar that makes heavy use of regular expressions. So make sure you brush up your skill on backward/forward references and lookarounds, because all these can be used.
-
- May 2020
-
github.com github.com
-
old_log_entries = old_log.split /(?=commit [0-9a-f]{40})/ # Lookahead assertions FTW
-
-
github.com github.com
-
old_log.split /(?=commit [0-9a-f]{40})/ # Lookahead assertions FTW
-
- Sep 2019
-
github.com github.com
-
I'm using a negative lookahead to mean "ignore all in /node_modules/ unless it's that package" using
-