Core: Use named exports in `src/`
[jquery.git] / src / core / isObviousHtml.js
blob715b47c1b33f4249be1abb2bd96e1dc67cea43ba
1 export function isObviousHtml( input ) {
2         return input[ 0 ] === "<" &&
3                 input[ input.length - 1 ] === ">" &&
4                 input.length >= 3;