Comparing version 0.1.20 to 0.1.21
{ | ||
"name": "remult", | ||
"version": "0.1.20", | ||
"version": "0.1.21", | ||
"description": "remult core lib", | ||
@@ -5,0 +5,0 @@ "homepage": "https://remult.github.io/", |
@@ -417,4 +417,7 @@ "use strict"; | ||
var custom = filterInfo.get(exports.customUrlToken); | ||
if (custom !== undefined) | ||
where.push(new Filter(function (x) { return x.custom(custom); })); | ||
if (custom !== undefined) { | ||
if (!Array.isArray(custom)) | ||
custom = [custom]; | ||
where.push.apply(where, tslib_1.__spread(custom.map(function (y) { return new Filter(function (x) { return x.custom(y); }); }))); | ||
} | ||
return new (AndFilter.bind.apply(AndFilter, tslib_1.__spread([void 0], where)))(); | ||
@@ -421,0 +424,0 @@ } |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
577115
8753