當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。