UNPKG

@mintlify/common

Version:

Commonly shared code within Mintlify

7 lines (6 loc) 146 B
export function optionallyRemoveLeadingSlash(path) { if (path.charAt(0) === '/') { return path.substring(1); } return path; }