Sign in
apache
/
pouchdb
/
refs/heads/4071-part-three
/
.
/
lib
/
deps
/
env
/
isChromeApp-browser.js
blob: dff2cd93eba05b643535696555cb1a1d12c894e0 [
file
] [
log
] [
blame
]
'use strict'
;
module
.
exports
=
function
isChromeApp
()
{
return
(
typeof
chrome
!==
"undefined"
&&
typeof
chrome
.
storage
!==
"undefined"
&&
typeof
chrome
.
storage
.
local
!==
"undefined"
);
};