export * from './util.image';
export * from './util.resource';
export * from './util.parse';
export * from './util.markdown';

/**
 * Strips prefix/suffix "/" characters.
 */
export const cleanPath = (value: string) =>
  value.replace(/^\//, '').replace(/\/$/, '');
