forward-slash.d.ts 150 B

123456
  1. /**
  2. * Replaces backslashes with one forward slash
  3. * @param input
  4. */
  5. declare function forwardSlash(input: string): string;
  6. export { forwardSlash };