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


TypeScript lang.isNumber函數代碼示例

本文整理匯總了TypeScript中@angular/core/src/facade/lang.isNumber函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript isNumber函數的具體用法?TypeScript isNumber怎麽用?TypeScript isNumber使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: transform

    transform(value:number):any {
        if (isNumber(value)) {
            return new Date(value * 1000);
        } else {
            if (isString(value)) {
                return new Date(value);
            }
        }

    }
開發者ID:node-package,項目名稱:dashboard,代碼行數:10,代碼來源:atexo-timestamp-to-date.pipe.ts

示例2: convertToInt

export function convertToInt(value): number {
    let normalizedValue;
        if (isBlank(value)) {
            normalizedValue = 0;
        } else {
            if (isNumber(value)) {
                normalizedValue = value;
            } else {
                let parsedValue = parseInt(value.toString());
                normalizedValue = isNaN(parsedValue) ? 0 : parsedValue;
            }
        }
    return Math.round(normalizedValue);
}
開發者ID:AhmedRagheb,項目名稱:nativescript-angular,代碼行數:14,代碼來源:utils.ts

示例3: transform

  transform(value: any, args: any): string {
    if (isBlank(value)) return null;

    if (!this.supports(value)) {
      // throw new InvalidPipeArgumentException(MyDateWorkaroudPipe, value);
      throw new BaseException("InvalidPipeArgument: " + MyDateWorkaroudPipe + ", " + value);
    }
    if (isNumber(value)) {
      value = DateWrapper.fromMillis(value);
    }
    // return DateFormatter.format(value, undefined, 'y MM dd');
    let yearStr = DateFormatter.format(value, undefined, 'y');
    let monthStr = DateFormatter.format(value, undefined, 'MM');
    let dayStr = DateFormatter.format(value, undefined, 'dd');
    return yearStr + '-' + monthStr + '-' + dayStr;
  }
開發者ID:macpersia,項目名稱:planty-worklogs-angular,代碼行數:16,代碼來源:my-date-workaround-pipe.ts

示例4: supports

 supports(obj: any): boolean { return isDate(obj) || isNumber(obj); }
開發者ID:macpersia,項目名稱:planty-worklogs-angular,代碼行數:1,代碼來源:my-date-workaround-pipe.ts


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