xdbc 1.0.76 → 1.0.77
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/DBC/AE.js +0 -1
- package/package.json +1 -1
- package/src/DBC/AE.ts +0 -1
package/dist/DBC/AE.js
CHANGED
|
@@ -29,7 +29,6 @@ export class AE extends DBC {
|
|
|
29
29
|
// biome-ignore lint/suspicious/noExplicitAny: <explanation>
|
|
30
30
|
condition, value, index, idxEnd) {
|
|
31
31
|
if (Array.isArray(value)) {
|
|
32
|
-
console.log("S", value);
|
|
33
32
|
if (index !== undefined && idxEnd === undefined) {
|
|
34
33
|
if (index > -1 && index < value.length) {
|
|
35
34
|
const result = condition.check(value[index]);
|
package/package.json
CHANGED
package/src/DBC/AE.ts
CHANGED
|
@@ -33,7 +33,6 @@ export class AE extends DBC {
|
|
|
33
33
|
idxEnd: number | undefined,
|
|
34
34
|
): boolean | string {
|
|
35
35
|
if (Array.isArray(value)) {
|
|
36
|
-
console.log("S", value);
|
|
37
36
|
if (index !== undefined && idxEnd === undefined) {
|
|
38
37
|
if (index > -1 && index < value.length) {
|
|
39
38
|
const result = condition.check(value[index]);
|