/** * @file sep * @module pathe/lib/sep */ import type { PosixSep } from '@flex-development/pathe' /** * POSIX path segment separator. * * @see {@linkcode PosixSep} * * @category * core * * @const {PosixSep} sep */ const sep: PosixSep = '/' export default sep