(name)
| 146 | * @return any |
| 147 | */ |
| 148 | export async function getData (name) { |
| 149 | const res = await dbAction('data', 'findOne', { |
| 150 | _id: name |
| 151 | }) |
| 152 | return res ? res.value : undefined |
| 153 | } |
| 154 | |
| 155 | /** |
| 156 | * get sorted data from db |
no test coverage detected