6 lines
159 B
TypeScript
6 lines
159 B
TypeScript
|
import { escapeHtml, toDisplayString } from '@vue/shared'
|
||
|
|
||
|
export function interpolate(value: unknown): string {
|
||
|
return escapeHtml(toDisplayString(value))
|
||
|
}
|