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


TypeScript lodash.negate函数代码示例

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


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

示例1: findHeaderForMappingFn

import { sortDefinitions } from '../utils/definitions';
import {
    getMissingUrisInAttributesMap
} from '../utils/attributesMapLoader';
import {
    getAttributes,
    getMeasures,
    getMeasureFilters,
    getDefinition,
    isAttributeMeasureFilter,
    getAttributesDisplayForms
} from '../utils/visualizationObjectHelper';
import { IMeasure } from '../interfaces';
import { XhrModule } from '../xhr';

const notEmpty = negate<Array<string | null>>(isEmpty);

function findHeaderForMappingFn(mapping: any, header: any) {
    return ((mapping.element === header.id || mapping.element === header.uri) &&
        header.measureIndex === undefined);
}

function wrapMeasureIndexesFromMappings(metricMappings: any[], headers: any[]) {
    if (metricMappings) {
        metricMappings.forEach((mapping) => {
            const header = find(headers, partial(findHeaderForMappingFn, mapping));
            if (header) {
                header.measureIndex = mapping.measureIndex;
                header.isPoP = mapping.isPoP;
            }
        });
开发者ID:gooddata,项目名称:gooddata-js,代码行数:31,代码来源:experimental-executions.ts

示例2: removeEmptyStacks

export function removeEmptyStacks(stacks: ItemStack<Item>[]): ItemStack<Item>[] {
  return _.filter(stacks, _.negate(stackIsEmpty));
}
开发者ID:zthomae,项目名称:xanadu,代码行数:3,代码来源:item.ts

示例3: safeQueryStringStringify

export function safeQueryStringStringify(o: any) {
  const noUndefinedFields = _.pickBy(o, _.negate(_.isUndefined));
  return querystring.stringify(noUndefinedFields);
}
开发者ID:HarryTmetic,项目名称:r2,代码行数:4,代码来源:util.ts

示例4: getLinterText

export function getLinterText(message: Linter.Message) {
    if (!hasLinterText(message)) {
        return message.html;
    }
    return message.text;
}

export function hasCompletionText(message: any): message is Autocomplete.ITextSuggestion {
    return !!message.text;
}

export function getCompletionText(message: Autocomplete.Suggestion) {
    if (message.displayText) {
        return message.displayText;
    }
    if (!hasCompletionText(message)) {
        return message.snippet;
    }
    return message.text;
}

export function getCompletionReplacementText(message: Autocomplete.Suggestion) {
    if (!hasCompletionText(message)) {
        return message.snippet;
    }
    return message.text;
}

export const isDefined = _.negate(_.isUndefined);
开发者ID:OmniSharp,项目名称:atom-languageclient,代码行数:29,代码来源:convert.ts


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