core: add helpers for working with paths across OSes (#1102)

This commit is contained in:
Seth Vargo
2022-06-15 08:18:44 -07:00
committed by GitHub
parent b5f31bb5a2
commit 00282d6145
4 changed files with 226 additions and 1 deletions

View File

@@ -369,3 +369,8 @@ export {summary} from './summary'
* @deprecated use core.summary
*/
export {markdownSummary} from './summary'
/**
* Path exports
*/
export {toPosixPath, toWin32Path, toPlatformPath} from './path-utils'