Files
sql-like-filter/test/test-and.ts
2026-01-05 14:44:55 +08:00

13 lines
440 B
TypeScript

import { filter } from '../src/index.ts';
const data = [
{ path: 'good', key: 'searchInfo', value: 1 },
{ path: 'good', key: 'other', value: 2 },
{ path: 'bad', key: 'searchInfo', value: 3 },
];
// 测试使用 AND 和双引号
console.log('Testing: WHERE path = \'good\' AND key = "searchInfo"');
const result = filter(data, 'WHERE path = \'good\' AND key = "searchInfo"');
console.log('Result:', JSON.stringify(result, null, 2));