5 lines
88 B

export * from 'path';
export function isRelative ( path ) {
return path[0] === '.';
}