UNPKG

@mintlify/common

Version:

Commonly shared code within Mintlify

7 lines (6 loc) 150 B
export function optionallyAddLeadingSlash(filePath) { if (filePath.startsWith('/')) { return filePath; } return '/' + filePath; }