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


TypeScript utils.isUndefined方法代碼示例

本文整理匯總了TypeScript中@nestjs/common/utils/shared.utils.isUndefined方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript utils.isUndefined方法的具體用法?TypeScript utils.isUndefined怎麽用?TypeScript utils.isUndefined使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在@nestjs/common/utils/shared.utils的用法示例。


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

示例1: RuntimeException

  public async loadInstance<T>(
    wrapper: InstanceWrapper<T>,
    collection: Map<string, InstanceWrapper<any>>,
    module: Module,
  ) {
    if (wrapper.isPending) {
      return wrapper.done$;
    }
    const done = this.applyDoneHook(wrapper);
    const { name, inject } = wrapper;

    const targetWrapper = collection.get(name);
    if (isUndefined(targetWrapper)) {
      throw new RuntimeException();
    }
    if (targetWrapper.isResolved) {
      return;
    }
    const callback = async instances => {
      const properties = await this.resolveProperties(wrapper, module, inject);
      const instance = await this.instantiateClass(
        instances,
        wrapper,
        targetWrapper,
      );
      this.applyProperties(instance, properties);
      done();
    };
    await this.resolveConstructorParams<T>(wrapper, module, inject, callback);
  }
開發者ID:SARAVANA1501,項目名稱:nest,代碼行數:30,代碼來源:injector.ts

示例2: iterate

 public createConcreteContext<T extends any[], R extends any[]>(
   metadata: T,
 ): R {
   if (isUndefined(metadata) || isEmpty(metadata)) {
     return [] as R;
   }
   return iterate(metadata)
     .filter((guard: any) => guard && (guard.name || guard.canActivate))
     .map(guard => this.getGuardInstance(guard))
     .filter((guard: CanActivate) => guard && isFunction(guard.canActivate))
     .toArray() as R;
 }
開發者ID:a1r0,項目名稱:nest,代碼行數:12,代碼來源:guards-context-creator.ts

示例3: iterate

 public createConcreteContext<T extends any[], R extends any[]>(
   metadata: T,
 ): R {
   if (isUndefined(metadata) || isEmpty(metadata)) {
     return [] as R;
   }
   return iterate(metadata)
     .filter((pipe: any) => pipe && (pipe.name || pipe.transform))
     .map(pipe => this.getPipeInstance(pipe))
     .filter(pipe => pipe && pipe.transform && isFunction(pipe.transform))
     .map(pipe => pipe.transform.bind(pipe))
     .toArray() as R;
 }
開發者ID:SARAVANA1501,項目名稱:nest,代碼行數:13,代碼來源:pipes-context-creator.ts

示例4: String

 public *scanForServerHooks(instance: NestGateway): IterableIterator<string> {
   for (const propertyKey in instance) {
     if (isFunction(propertyKey)) {
       continue;
     }
     const property = String(propertyKey);
     const isServer = Reflect.getMetadata(
       GATEWAY_SERVER_METADATA,
       instance,
       property,
     );
     if (!isUndefined(isServer)) {
       yield property;
     }
   }
 }
開發者ID:SARAVANA1501,項目名稱:nest,代碼行數:16,代碼來源:gateway-metadata-explorer.ts

示例5: UndefinedDependencyException

 public async resolveSingleParam<T>(
   wrapper: InstanceWrapper<T>,
   param: Type<any> | string | symbol | any,
   { index, length }: { index: number; length: number },
   module: Module,
 ) {
   if (isUndefined(param)) {
     throw new UndefinedDependencyException(wrapper.name, index, length);
   }
   const token = this.resolveParamToken(wrapper, param);
   return await this.resolveComponentInstance<T>(
     module,
     isFunction(token) ? (token as Type<any>).name : token,
     { index, length },
     wrapper,
   );
 }
開發者ID:a1r0,項目名稱:nest,代碼行數:17,代碼來源:injector.ts

示例6: UndefinedDependencyException

 public async resolveSingleParam<T>(
   wrapper: InstanceWrapper<T>,
   param: Type<any> | string | symbol | any,
   dependencyContext: InjectorDependencyContext,
   module: Module,
 ) {
   if (isUndefined(param)) {
     throw new UndefinedDependencyException(wrapper.name, dependencyContext, module);
   }
   const token = this.resolveParamToken(wrapper, param);
   return this.resolveComponentInstance<T>(
     module,
     isFunction(token) ? (token as Type<any>).name : token,
     dependencyContext,
     wrapper,
   );
 }
開發者ID:SARAVANA1501,項目名稱:nest,代碼行數:17,代碼來源:injector.ts

示例7: iterate

 public createConcreteContext<T extends any[], R extends any[]>(
   metadata: T,
 ): R {
   if (isUndefined(metadata) || isEmpty(metadata)) {
     return [] as R;
   }
   return iterate(metadata)
     .filter(
       instance => instance && (isFunction(instance.catch) || instance.name),
     )
     .map(filter => this.getFilterInstance(filter))
     .map(instance => ({
       func: instance.catch.bind(instance),
       exceptionMetatypes: this.reflectCatchExceptions(instance),
     }))
     .toArray() as R;
 }
開發者ID:a1r0,項目名稱:nest,代碼行數:17,代碼來源:base-exception-filter-context.ts

示例8: iterate

 public createConcreteContext<T extends any[], R extends any[]>(
   metadata: T,
 ): R {
   if (isUndefined(metadata) || isEmpty(metadata)) {
     return [] as R;
   }
   return iterate(metadata)
     .filter(
       (interceptor: any) =>
         interceptor && (interceptor.name || interceptor.intercept),
     )
     .map(interceptor => this.getInterceptorInstance(interceptor))
     .filter(
       (interceptor: NestInterceptor) =>
         interceptor && isFunction(interceptor.intercept),
     )
     .toArray() as R;
 }
開發者ID:timokae,項目名稱:nest,代碼行數:18,代碼來源:interceptors-context-creator.ts

示例9: String

  public *scanForClientHooks(
    instance: Controller,
  ): IterableIterator<ClientProperties> {
    for (const propertyKey in instance) {
      if (isFunction(propertyKey)) continue;

      const property = String(propertyKey);
      const isClient = Reflect.getMetadata(CLIENT_METADATA, instance, property);
      if (isUndefined(isClient)) continue;

      const metadata = Reflect.getMetadata(
        CLIENT_CONFIGURATION_METADATA,
        instance,
        property,
      );
      yield { property, metadata };
    }
  }
開發者ID:SARAVANA1501,項目名稱:nest,代碼行數:18,代碼來源:listener-metadata-explorer.ts

示例10: exploreMethodMetadata

 public exploreMethodMetadata(
   instancePrototype,
   methodName: string,
 ): MessageMappingProperties {
   const callback = instancePrototype[methodName];
   const isMessageMapping = Reflect.getMetadata(
     MESSAGE_MAPPING_METADATA,
     callback,
   );
   if (isUndefined(isMessageMapping)) {
     return null;
   }
   const message = Reflect.getMetadata(MESSAGE_METADATA, callback);
   return {
     callback,
     message,
   };
 }
開發者ID:SARAVANA1501,項目名稱:nest,代碼行數:18,代碼來源:gateway-metadata-explorer.ts


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