2018-06-16 01:12:45 +08:00
|
|
|
/**
|
2022-10-18 23:19:24 +08:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2018-06-16 01:12:45 +08:00
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*
|
|
|
|
|
* @flow
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export const canUseDOM: boolean = !!(
|
|
|
|
|
typeof window !== 'undefined' &&
|
2019-04-25 18:28:53 +08:00
|
|
|
typeof window.document !== 'undefined' &&
|
|
|
|
|
typeof window.document.createElement !== 'undefined'
|
2018-06-16 01:12:45 +08:00
|
|
|
);
|