(strings, ...values)
| 276 | } |
| 277 | |
| 278 | export const path: TemplateTag<Path> = (strings, ...values) => { |
| 279 | return normalize(String.raw(strings, ...values)); |
| 280 | }; |
| 281 | |
| 282 | // Platform-specific paths. |
| 283 | export type WindowsPath = string & { |
no test coverage detected