aboutsummaryrefslogtreecommitdiff
path: root/src/zenserver/frontend/html/util/sanitize.js
blob: 1b0f32e3814ee335651c836f95efecae050773e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
// Copyright Epic Games, Inc. All Rights Reserved.

// Shared utility functions for compute dashboard pages.

function escapeHtml(text) {
	var div = document.createElement('div');
	div.textContent = text;
	return div.innerHTML;
}