mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
8 lines
207 B
TypeScript
8 lines
207 B
TypeScript
import { resolve } from 'pathe'
|
|
|
|
export const fixtureDir = resolve(__dirname, 'fixture')
|
|
|
|
export function normalizeLineEndings (str: string, normalized = '\n') {
|
|
return str.replace(/\r?\n/g, normalized)
|
|
}
|