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


TypeScript fp.isNumber函數代碼示例

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


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

示例1: get

 Object.keys(sources).reduce<DetailItem[]>((accumulator, source) => {
   const item = get(source, sources);
   if (Array.isArray(item) || isString(item) || isNumber(item)) {
     const field = path ? `${path}.${source}` : source;
     category = field.split('.')[0];
     if (isEmpty(category) && baseCategoryFields.includes(category)) {
       category = 'base';
     }
     return [
       ...accumulator,
       {
         category,
         field,
         values: item,
         originalValue: item,
       } as DetailItem,
     ];
   } else if (isObject(item)) {
     return [
       ...accumulator,
       ...getDataFromHits(item, category || source, path ? `${path}.${source}` : source),
     ];
   }
   return accumulator;
 }, []);
開發者ID:,項目名稱:,代碼行數:25,代碼來源:

示例2: parseFloat

const convertToNumber = (value: object | number | boolean | string): number => {
  if (isNumber(value)) {
    return value;
  } else if (isString(value)) {
    return parseFloat(value);
  } else {
    return NaN;
  }
};
開發者ID:,項目名稱:,代碼行數:9,代碼來源:

示例3: if

export const parseQueryValue = (
  value: string | number | object | undefined | null
): string | number => {
  if (value == null) {
    return '';
  } else if (isObject(value)) {
    return JSON.stringify(value);
  } else if (isNumber(value)) {
    return value;
  }
  return value.toString();
};
開發者ID:,項目名稱:,代碼行數:12,代碼來源:

示例4: GraphQLScalarType

 *  serialize: gets invoked when serializing the result to send it back to a client.
 *
 *  parseValue: gets invoked to parse client input that was passed through variables.
 *
 *  parseLiteral: gets invoked to parse client input that was passed inline in the query.
 */

export const toBooleanArrayScalar = new GraphQLScalarType({
  name: 'BooleanArray',
  description: 'Represents value in detail item from the timeline who wants to more than one type',
  serialize(value): boolean[] | null {
    if (value == null) {
      return null;
    } else if (Array.isArray(value)) {
      return convertArrayToBoolean(value) as boolean[];
    } else if (isString(value) || isObject(value) || isNumber(value)) {
      return [convertToBoolean(value)];
    }
    return [value];
  },
  parseValue(value) {
    return value;
  },
  parseLiteral(ast) {
    switch (ast.kind) {
      case Kind.BOOLEAN:
        return ast.value;
      case Kind.INT:
        return ast.value;
      case Kind.FLOAT:
        return ast.value;
開發者ID:,項目名稱:,代碼行數:31,代碼來源:


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