aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/isObviousHtml.js
blob: 976f81219eb8ef0fbbb0a1ab79ef97a275596b22 (plain)
1
2
3
4
5
6
7
function isObviousHtml( input ) {
	return input[ 0 ] === "<" &&
		input[ input.length - 1 ] === ">" &&
		input.length >= 3;
}

export default isObviousHtml;