當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript atom-plugin-command-line.default函數代碼示例

本文整理匯總了TypeScript中atom-plugin-command-line.default函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript default函數的具體用法?TypeScript default怎麽用?TypeScript default使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了default函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: Promise

 return new Promise((resolve, reject) => {
   let minOrLater: Promise<boolean> = commandLine(command, '-v')
     .then((res: string) => {
       // not installed
       if (parseInt(res, 10).toString() === 'NaN') {
         return false;
       }
       // two digits, ex: 0.10
       const mins = matchVersions(minVersion);
       if (!!mins) {
         const resMins = matchVersions(res);
         const firstDigit = parseInt(resMins[1], 10);
         const firstVersion = parseInt(mins[1], 10);
         return firstDigit > firstVersion ||
           firstDigit === firstVersion && parseInt(resMins[2], 10) >= parseInt(firstVersion[2], 10);
       } else {
         // single digit, ex: 3.0
         return parseInt(res, 10) >= parseInt(minVersion, 10);
       }
     });
   if (!minOrLater) {
     resolve(false);
   } else {
     resolve(true);
   }
 });
開發者ID:coderoad,項目名稱:builder-coderoad,代碼行數:26,代碼來源:check-system.ts

示例2: canUpdateTutorial

export function canUpdateTutorial(
  name: string, currentVersion: string
): Promise<boolean> {
  if (!navigator.onLine) {
    return null;
  }
  return (commandLine(
    'npm', `outdated ${name}`
  ).then(
    (res: string) => {
      console.log(res);
      if (res.length > 0) {
        // npm link enabled
        const linked = res.match(/[0-9\.]+\s+linked/);
        if (linked) { return false; }
        // not latest version
        const match = res.match(/[0-9\.]+\s+[0-9\.]+\s+([0-9\.]+)/);
        if (match.length >= 2) {
          // return match[1]; // string output
          return true;
        }
      }
      return null;
    })
  );
}
開發者ID:lixonics,項目名稱:atom-coderoad,代碼行數:26,代碼來源:update.ts

示例3: requiresXCode

export function requiresXCode(): Promise<boolean> | boolean {
  if (!navigator.platform.match(/Mac/)) {
    return true;
  }
  return commandLine('xcode-select', '-v').then((res: string) => {
    if (!!res.match(/xcode-select version [0-9]+/)) {
      return true;
    }
    return false;
  });
}
開發者ID:coderoad,項目名稱:builder-coderoad,代碼行數:11,代碼來源:check-system.ts

示例4: updateNpm

export function updateNpm(): void {
  commandLine('npm', 'update -g npm')
    .then((res) => {
      // store.dispatch(setupVerify());
    });
}
開發者ID:lixonics,項目名稱:atom-coderoad,代碼行數:6,代碼來源:action-system.ts


注:本文中的atom-plugin-command-line.default函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。