Options
All
  • Public
  • Public/Protected
  • All
Menu

External module @tomato-js/env

Index

Functions

Const isBrowser

  • isBrowser(): boolean
  • 判断是否在浏览器环境

    脚本举例

      import { isBrowser } from '@tomato-js/env'
      isBrowser();//true

    Returns boolean

    是否存在window上

isExist

  • isExist(apiName: string): boolean
  • 判断是否有该全局变量

    脚本举例

      import { isExist } from '@tomato-js/env'
      const isGlobalExist = isExist('Cache');//true

    Parameters

    • apiName: string

      api的名称

    Returns boolean

    是否存在window上

Const isNode

  • isNode(): boolean
  • 判断是否在Node环境

    脚本举例

      import { isNode } from '@tomato-js/env'
      isNode();//false

    Returns boolean

    是否存在global上

isURLSearchParamsExist

  • isURLSearchParamsExist(): boolean
  • 判断是否有存在URLSearchParams

    Returns boolean

    是否存在window上

Generated using TypeDoc