jason.barnabe (Jason Barnabe)
- Login: jason.barnabe
- Email: jason.barnabe@gmail.com
- Registered on: 03/15/2018
- Last sign in: 03/15/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/15/2018
-
06:57 PM Ruby Bug #14608 (Closed): Regexp::union and forward slashes
- When using Regexp::union and a regular expression with a forward slash, there seem to be some inconsistencies.
~~~ ruby
# this is weird
Regexp.union(/\//, '') # => /(?-mix:\/)|/
Regexp.union(/\//, '') == /(?-mix:\/...