gitextract_7sk6m5hs/ ├── README.md ├── decorator/ │ ├── index.html │ └── index.ts ├── ejercicios/ │ ├── abort-fetch.html │ ├── abort-fetch.js │ ├── call-apply-bind.js │ ├── clousers.js │ ├── generators.js │ ├── index.html │ ├── promise.js │ ├── promises.html │ ├── prototype-inheritance.js │ ├── prototype.js │ ├── proxy.js │ ├── scope.js │ └── this.js ├── mediaplayer/ │ ├── .gitignore │ ├── package.json │ └── src/ │ ├── MediaPlayer.ts │ └── plugins/ │ ├── Ads/ │ │ ├── Ads.ts │ │ ├── ads_list.js │ │ └── index.ts │ ├── AutoPause.ts │ └── AutoPlay.ts ├── notes/ │ └── readme.md ├── observer/ │ ├── index.html │ └── index.ts ├── player-video/ │ ├── MediaPlayer.ts │ ├── index.html │ ├── index.ts │ ├── plugins/ │ │ ├── Ads/ │ │ │ ├── Ads.ts │ │ │ ├── ads_list.js │ │ │ └── index.ts │ │ ├── AutoPause.ts │ │ └── AutoPlay.ts │ ├── styles.css │ └── sw.js ├── singleton/ │ ├── Singleton.ts │ ├── index.html │ └── index.ts ├── typescript/ │ ├── functions.ts │ ├── index.html │ ├── index.ts │ └── interface.ts └── website/ ├── .gitignore ├── index.html ├── index.ts ├── package.json ├── styles.css └── sw.js