mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 20:41:17 +00:00
chore: clean up build steps
This commit is contained in:
16
src/parser/classes/ProfileColumn.js
Normal file
16
src/parser/classes/ProfileColumn.js
Normal file
@@ -0,0 +1,16 @@
|
||||
import Parser from '../index';
|
||||
|
||||
import { YTNode } from '../helpers';
|
||||
|
||||
class ProfileColumn extends YTNode {
|
||||
static type = 'ProfileColumn';
|
||||
constructor(data) {
|
||||
super();
|
||||
this.items = Parser.parse(data.items);
|
||||
}
|
||||
// XXX: alias for consistency
|
||||
get contents() {
|
||||
return this.items;
|
||||
}
|
||||
}
|
||||
export default ProfileColumn;
|
||||
Reference in New Issue
Block a user