UNPKG

@sanity/codegen

Version:

Codegen toolkit for Sanity.io

8 lines (7 loc) 215 B
/** * Formats a path so it is the same in Windows and Unix * @param path - The path to format */ export function formatPath(path) { return path.replaceAll('\\', '/'); } //# sourceMappingURL=formatPath.js.map