Core:Manipulation: Add basic TrustedHTML support
[jquery.git] / src / core / isObviousHtml.js
blob976f81219eb8ef0fbbb0a1ab79ef97a275596b22
1 function isObviousHtml( input ) {
2         return input[ 0 ] === "<" &&
3                 input[ input.length - 1 ] === ">" &&
4                 input.length >= 3;
7 export default isObviousHtml;