mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-28 00:56:23 +00:00
12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
'use strict';
|
|
|
|
class SearchSuggestionItem {
|
|
static parse(data) {
|
|
return {
|
|
query: data[0],
|
|
results: data[1].map((res) => res[0])
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = SearchSuggestionItem; |