isBrowser
isBrowser(): boolean
ブラウザでの実行の場合はTrueを返却する ※ 判定はdocumentとwindowがundefinedではないことで評価している
Example
if (isBrowser()) {
const nodeCollection = document.getElementsByClassName('sample')
}
Returns
boolean
isBrowser(): boolean
ブラウザでの実行の場合はTrueを返却する ※ 判定はdocumentとwindowがundefinedではないことで評価している
Example
if (isBrowser()) {
const nodeCollection = document.getElementsByClassName('sample')
}
boolean