How to use the @nestjsx/util.isUndefined function in @nestjsx/util

To help you get started, we’ve selected a few @nestjsx/util examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github nestjsx / crud / packages / crud-typeorm / lib / typeorm-crud.service.js View on Github external
            .filter((d) => !util_1.isUndefined(d));
        if (!util_1.hasLength(bulk)) {
github nestjsx / crud / packages / crud-request / src / request-query.builder.ts View on Github external
private checkQueryObjectParam(
    cond: keyof RequestQueryBuilderOptions['paramNamesMap'],
    defaults: any,
  ): string {
    const param = this.paramNames[cond];
    if (isNil(this.queryObject[param]) && !isUndefined(defaults)) {
      this.queryObject[param] = defaults;
    }
    return param;
  }