当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript ramda.tap函数代码示例

本文整理汇总了TypeScript中ramda.tap函数的典型用法代码示例。如果您正苦于以下问题:TypeScript tap函数的具体用法?TypeScript tap怎么用?TypeScript tap使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了tap函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: checkOneBrowser

function checkOneBrowser(browser: Browser) {
  const platform = os.platform()
  const pickBrowserProps = pick([
    'name',
    'displayName',
    'type',
    'version',
    'path'
  ])

  const logBrowser = (props: any) => {
    log('setting major version for %j', props)
  }

  const failed = (err: NotInstalledError) => {
    if (err.notInstalled) {
      log('browser %s not installed', browser.name)
      return false
    }
    throw err
  }

  log('checking one browser %s', browser.name)
  return lookup(platform, browser)
    .then(merge(browser))
    .then(pickBrowserProps)
    .then(tap(logBrowser))
    .then(setMajorVersion)
    .catch(failed)
}
开发者ID:lgandecki,项目名称:cypress,代码行数:30,代码来源:detect.ts

示例2: log

 .then(exists => {
   log('found %s ?', exePath, exists)
   if (!exists) {
     throw notInstalledErr(`Browser ${name} file not found at ${exePath}`)
   }
   // on Windows using "--version" seems to always start the full
   // browser, no matter what one does.
   const args: [string] = [
     'datafile',
     'where',
     `name="${doubleEscape(exePath)}"`,
     'get',
     'Version',
     '/value'
   ]
   return execa('wmic', args)
     .then(result => result.stdout)
     .then(trim)
     .then(tap(log))
     .then(getVersion)
     .then((version: string) => {
       log("browser %s at '%s' version %s", name, exePath, version)
       return {
         name,
         version,
         path: exePath
       }
     })
 })
开发者ID:lgandecki,项目名称:cypress,代码行数:29,代码来源:index.ts

示例3: log

    .then(exists => {
      log('found %s ?', exePath, exists)

      if (!exists) {
        throw notInstalledErr(`Browser ${name} file not found at ${exePath}`)
      }

      return getVersionString(exePath)
        .then(tap(log))
        .then(getVersion)
        .then((version: string) => {
          log("browser %s at '%s' version %s", name, exePath, version)
          return {
            name,
            version,
            path: exePath
          } as FoundBrowser
        })
    })
开发者ID:YOU54F,项目名称:cypress,代码行数:19,代码来源:index.ts

示例4: mdfind

export function mdfind(id: string): Promise<string> {
  const cmd = `mdfind 'kMDItemCFBundleIdentifier=="${id}"' | head -1`
  log('looking for bundle id %s using command: %s', id, cmd)

  const logFound = (str: string) => {
    log('found %s at %s', id, str)
    return str
  }

  const failedToFind = () => {
    log('could not find %s', id)
    throw notInstalledErr(id)
  }

  return execa
    .shell(cmd)
    .then(result => result.stdout)
    .then(tap(logFound))
    .catch(failedToFind)
}
开发者ID:YOU54F,项目名称:cypress,代码行数:20,代码来源:util.ts

示例5: getLinuxBrowser

function getLinuxBrowser(
  name: string,
  binary: string,
  versionRegex: RegExp
): Promise<FoundBrowser> {
  const getVersion = (stdout: string) => {
    const m = versionRegex.exec(stdout)
    if (m) {
      return m[1]
    }
    log(
      'Could not extract version from %s using regex %s',
      stdout,
      versionRegex
    )
    return notInstalledErr(binary)
  }

  const returnError = (err: Error) => {
    log('Could not detect browser %s', err.message)
    return notInstalledErr(binary)
  }

  const cmd = `${binary} --version`
  log('looking using command "%s"', cmd)
  return execa
    .shell(cmd)
    .then(result => result.stdout)
    .then(trim)
    .then(tap(log))
    .then(getVersion)
    .then((version: string) => {
      return {
        name,
        version,
        path: binary
      }
    })
    .catch(returnError)
}
开发者ID:lgandecki,项目名称:cypress,代码行数:40,代码来源:index.ts

示例6: getLinuxBrowser

function getLinuxBrowser(
  name: string,
  binary: string,
  versionRegex: RegExp
): Promise<FoundBrowser> {
  const getVersion = (stdout: string) => {
    const m = versionRegex.exec(stdout)
    if (m) {
      return m[1]
    }
    log(
      'Could not extract version from %s using regex %s',
      stdout,
      versionRegex
    )
    throw notInstalledErr(binary)
  }

  const logAndThrowError = (err: Error) => {
    log(
      'Received error detecting browser binary: "%s" with error:',
      binary,
      err.message
    )
    throw notInstalledErr(binary)
  }

  return getVersionString(binary)
    .then(tap(log))
    .then(getVersion)
    .then((version: string) => {
      return {
        name,
        version,
        path: binary
      } as FoundBrowser
    })
    .catch(logAndThrowError)
}
开发者ID:YOU54F,项目名称:cypress,代码行数:39,代码来源:index.ts


注:本文中的ramda.tap函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。