UNPKG

umi-utils

Version:
8 lines (7 loc) 201 B
/** * Make up the ending slash path ( /abc => /abc/ ) * @param path string */ export default function endWithSlash(path: string): string { return path.slice(-1) !== '/' ? `${path}/` : path; }