vue3-yuanma/packages/compiler-ssr/__tests__/utils.ts
2020-02-04 16:47:12 -05:00

6 lines
149 B
TypeScript

import { compile } from '../src'
export function getCompiledString(src: string): string {
return compile(src).code.match(/_push\(([^]*)\)/)![1]
}