/** * @file dot * @module pathe/lib/dot */ import type { Dot } from '@flex-development/pathe' /** * Dot character (`'.'`). * * @see {@linkcode Dot} * * @category * utils * * @const {Dot} dot */ const dot: Dot = '.' export default dot