Sign in
apache
/
pouchdb
/
refs/heads/test-npm-git
/
.
/
src
/
deps
/
env
/
isChromeApp-browser.js
blob: 60cf31922d4ec630a179a14f1e49ff6bb57c4ccd [
file
] [
log
] [
blame
]
function
isChromeApp
()
{
return
(
typeof
chrome
!==
"undefined"
&&
typeof
chrome
.
storage
!==
"undefined"
&&
typeof
chrome
.
storage
.
local
!==
"undefined"
);
}
export
default
isChromeApp
;