UNPKG

checksync

Version:

A tool that allows code to be annotated across different files to ensure they remain in sync.

10 lines (9 loc) 255 B
/** * Normalize separators to forward slashes. */ declare const normalizeSeparators: (g: string) => string; /** * Normalize separators to the OS default. */ export declare const osSeparators: (g: string) => string; export default normalizeSeparators;