blob: dff2cd93eba05b643535696555cb1a1d12c894e0 [file] [log] [blame]
'use strict';
module.exports = function isChromeApp() {
return (typeof chrome !== "undefined" &&
typeof chrome.storage !== "undefined" &&
typeof chrome.storage.local !== "undefined");
};