mirror of
https://github.com/bitwarden/browser
synced 2025-01-14 03:19:54 +01:00
PS-91 make isMacAppStore return true/false (#735)
* return false if undefined from isMacAppStore * PS-91 use strict equality instead of null coalescing Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com> Co-authored-by: Chad Scharf <3904944+cscharf@users.noreply.github.com>
This commit is contained in:
parent
535decc3d9
commit
292d5e0039
@ -34,7 +34,7 @@ export function isMac() {
|
||||
}
|
||||
|
||||
export function isMacAppStore() {
|
||||
return isMac() && process.mas && process.mas === true;
|
||||
return isMac() && process.mas === true;
|
||||
}
|
||||
|
||||
export function isWindowsStore() {
|
||||
|
Loading…
Reference in New Issue
Block a user