mirror of
https://github.com/status-im/consul.git
synced 2025-02-20 01:18:49 +00:00
5 lines
206 B
JavaScript
5 lines
206 B
JavaScript
|
export default {
|
||
|
Name: (item, value) => item.Name.toLowerCase().indexOf(value.toLowerCase()) !== -1,
|
||
|
Description: (item, value) => item.Description.toLowerCase().indexOf(value.toLowerCase()) !== -1,
|
||
|
};
|