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