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


TypeScript fp.map函数代码示例

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


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

示例1: flow

 (snippets) => flow([
     map('files'),
     flattenDeep,
     groupBy('language'),
     map((language: string[]) => ({
       language: get('language', head(language)),
       size: size(language)
     })),
     sortBy('size'),
     reverse
   ])(snippets)
开发者ID:Gisto,项目名称:Gisto,代码行数:11,代码来源:snippets.ts

示例2: buildReport

function buildReport (errors) {
  const errorLines = _.compose(_.map(buildLine), _.get('details'))(errors)
  return {
    desc: `检查 Taro 配置 (${PROJECT_CONF_PATH})`,
    lines: errorLines
  }
}
开发者ID:YangShaoQun,项目名称:taro,代码行数:7,代码来源:configValidator.ts

示例3: pkgsNotInstalled

function pkgsNotInstalled (pkgs) {
  const uninstalledPkgs = _.filter(isPkgNotInstalled, pkgs)
  const lines = _.map(pkg => Object({
    desc: `使用到的依赖 ${pkg.moduleName} 还没有安装`,
    valid: false
  }), uninstalledPkgs)
  return lines
}
开发者ID:YangShaoQun,项目名称:taro,代码行数:8,代码来源:packageValidator.ts

示例4: taroCliVersionNotMatch

function taroCliVersionNotMatch (pkgs) {
  const pkgsNotMatch = _.filter(pkg => isPkgInstalled(pkg) && isCliVersionNotMatch(pkg), pkgs)
  const lines = _.map(pkg => Object({
    desc: `${pkg.moduleName} (${pkg.installed}) 与当前使用的 @tarojs/cli (${pkgVersion}) 版本不一致, 请更新为统一的版本`,
    valid: false
  }), pkgsNotMatch)
  return lines
}
开发者ID:YangShaoQun,项目名称:taro,代码行数:8,代码来源:packageValidator.ts

示例5: pipe

const getDllReferencePlugins = ({ dllEntry, outputRoot, dllDirectory }) => {
  return pipe(
    toPairs,
    map(([key]) => {
      return [`dll${key}`, getDllReferencePlugin(outputRoot, dllDirectory, key)]
    }),
    fromPairs
  )(dllEntry)
}
开发者ID:topud,项目名称:taro,代码行数:9,代码来源:chain.ts

示例6: map

const prepareFiles = (snippet: Partial<ISnippet>) => {
  return map(
    (file: IFile) => ({
      ...file,
      collapsed: false,
      viewed: toUnixTimeStamp(new Date().getTime()),
      language: getFileLanguage(file)
    }),
    snippet.files
  );
};
开发者ID:Gisto,项目名称:Gisto,代码行数:11,代码来源:prepareSnippet.ts

示例7: loadGraphs

 async loadGraphs() {
   return this.serverClient
     .query({
       query: gql`
         {
           __schema {
             queryType {
               fields {
                 name
               }
             }
           }
         }
       `,
     })
     .then(fp.get('data.__schema.queryType.fields'))
     .then(fp.map(fp.get('name')));
 }
开发者ID:danielwii,项目名称:asuna-admin,代码行数:18,代码来源:graphql.ts

示例8: map

                const groupedEntitiesFinal = groupedEntities.map(function(
                  groupedEntity
                ) {
                  if (isPvjsonEdge(groupedEntity)) {
                    groupedEntity.points = map(function(point) {
                      point.x -= x;
                      point.y -= y;
                      return point;
                    }, groupedEntity.points);
                  } else if (isPvjsonSingleFreeNode(groupedEntity)) {
                    groupedEntity.height;
                    groupedEntity.x -= x;
                    groupedEntity.y -= y;
                  } else {
                    return hl.fromError(
                      new Error(
                        `
			Encountered unexpected entity
			${JSON.stringify(groupedEntity, null, "  ")}
			in Group
			${JSON.stringify(pvjsonGroup, null, "  ")}
			`
                      )
                    );
                  }
                  // NOTE: this is needed for GPML2013a, because GPML2013a uses both
                  // GroupId/GroupRef and GraphId/GraphRef. GPML2017 uses a single
                  // identifier per entity. That identifier can be referenced by
                  // GroupRef and/or GraphRef. Pvjson follows GPML2017 in this, so
                  // we convert from GPML2013a format:
                  //   GroupRef="GROUP_ID_VALUE"
                  // to pvjson format:
                  //   {isPartOf: "GRAPH_ID_VALUE"}
                  groupedEntity.isPartOf = id;
                  return omit(["groupRef"], groupedEntity);
                });
开发者ID:wikipathways,项目名称:gpml2pvjson-js,代码行数:36,代码来源:toPvjson.ts


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