youtubei
Version:
Simple package to get information from youtube such as videos, playlists, channels, video information & comments, related videos, up next video, and more!
15 lines (14 loc) • 403 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.extendsBuiltIn = void 0;
function extendsBuiltIn() {
return (target) => {
return class extends target {
constructor(...args) {
super(args);
Object.setPrototypeOf(this, target.prototype);
}
};
};
}
exports.extendsBuiltIn = extendsBuiltIn;