mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
18 lines
277 B
JavaScript
18 lines
277 B
JavaScript
'use strict';
|
|
|
|
const Parser = require('..');
|
|
|
|
class ProfileColumn {
|
|
type = 'ProfileColumn';
|
|
|
|
constructor(data) {
|
|
this.items = Parser.parse(data.items);
|
|
}
|
|
|
|
// XXX: alias for consistency
|
|
get contents() {
|
|
return this.items;
|
|
}
|
|
}
|
|
|
|
module.exports = ProfileColumn; |