repo.or.cz
/
jquery.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Docs: Update remaining HTTP URLs to HTTPS
[jquery.git]
/
src
/
core
/
isObviousHtml.js
blob
715b47c1b33f4249be1abb2bd96e1dc67cea43ba
1
export function isObviousHtml( input ) {
2
return input[ 0 ] === "<" &&
3
input[ input.length - 1 ] === ">" &&
4
input.length >= 3;
5
}