6 lines
162 B
TypeScript
Raw Normal View History

import { escapeHtml, toDisplayString } from '@vue/shared'
2020-02-06 12:07:25 -05:00
export function ssrInterpolate(value: unknown): string {
return escapeHtml(toDisplayString(value))
}