| 1 | /*! |
|---|---|
| 2 | Provides convenience routines for escaping raw bytes. |
| 3 | |
| 4 | This was copied from `regex-automata` with a few light edits. |
| 5 | */ |
| 6 | |
| 7 | // These were originally defined here, but they got moved to |
| 8 | // shared since they're needed there. We re-export them here |
| 9 | // because this is really where they should live, but they're |
| 10 | // in shared because `jiff-tzdb-static` needs it. |
| 11 | pub(crate) use crate::shared::util::escape::{Byte, Bytes}; |
| 12 |
