在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → 弹幕播放器Demo

弹幕播放器Demo

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:10.88M
  • 下载次数:6
  • 浏览次数:125
  • 发布时间:2020-08-16
  • 实例类别:一般编程问题
  • 发 布 人:robot666
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
利用Video.js与jquery.danmu.js实现一个弹幕播放器。
【实例截图】
【核心代码】
弹幕播放器Demo
└── demo
├── css
│   ├── bootstrap.min.css
│   └── style.css
├── index.html
├── js
│   ├── jquery.danmu.min.js
│   └── jquery.min.js
├── node_modules
│   └── video.js
│   ├── CHANGELOG.md
│   ├── dist
│   │   ├── alt
│   │   │   ├── video-js-cdn.css
│   │   │   ├── video-js-cdn.min.css
│   │   │   ├── video.novtt.js
│   │   │   └── video.novtt.min.js
│   │   ├── examples
│   │   │   ├── elephantsdream
│   │   │   │   ├── captions.ar.vtt
│   │   │   │   ├── captions.en.vtt
│   │   │   │   ├── captions.ja.vtt
│   │   │   │   ├── captions.ru.vtt
│   │   │   │   ├── captions.sv.vtt
│   │   │   │   ├── chapters.en.vtt
│   │   │   │   ├── descriptions.en.vtt
│   │   │   │   └── index.html
│   │   │   ├── index.html
│   │   │   ├── shared
│   │   │   │   └── example-captions.vtt
│   │   │   └── simple-embed
│   │   │   └── index.html
│   │   ├── font
│   │   │   ├── VideoJS.eot
│   │   │   ├── VideoJS.svg
│   │   │   ├── VideoJS.ttf
│   │   │   └── VideoJS.woff
│   │   ├── ie8
│   │   │   ├── videojs-ie8.js
│   │   │   └── videojs-ie8.min.js
│   │   ├── lang
│   │   │   ├── ar.js
│   │   │   ├── ba.js
│   │   │   ├── bg.js
│   │   │   ├── ca.js
│   │   │   ├── cs.js
│   │   │   ├── da.js
│   │   │   ├── de.js
│   │   │   ├── el.js
│   │   │   ├── en.js
│   │   │   ├── es.js
│   │   │   ├── fa.js
│   │   │   ├── fi.js
│   │   │   ├── fr.js
│   │   │   ├── gl.js
│   │   │   ├── hr.js
│   │   │   ├── hu.js
│   │   │   ├── it.js
│   │   │   ├── ja.js
│   │   │   ├── ko.js
│   │   │   ├── nb.js
│   │   │   ├── nl.js
│   │   │   ├── nn.js
│   │   │   ├── pl.js
│   │   │   ├── pt-BR.js
│   │   │   ├── pt-PT.js
│   │   │   ├── ru.js
│   │   │   ├── sk.js
│   │   │   ├── sr.js
│   │   │   ├── sv.js
│   │   │   ├── tr.js
│   │   │   ├── uk.js
│   │   │   ├── vi.js
│   │   │   ├── zh-CN.js
│   │   │   └── zh-TW.js
│   │   ├── video.cjs.js
│   │   ├── video.es.js
│   │   ├── video.js
│   │   ├── video-js-6.2.4.zip
│   │   ├── video-js.css
│   │   ├── video-js.min.css
│   │   └── video.min.js
│   ├── docs
│   │   └── api
│   │   ├── AudioTrackButton.html
│   │   ├── AudioTrack.html
│   │   ├── AudioTrackList.html
│   │   ├── AudioTrackMenuItem.html
│   │   ├── BigPlayButton.html
│   │   ├── big-play-button.js.html
│   │   ├── Button.html
│   │   ├── button.js.html
│   │   ├── CaptionsButton.html
│   │   ├── CaptionSettingsMenuItem.html
│   │   ├── ChaptersButton.html
│   │   ├── ChaptersTrackMenuItem.html
│   │   ├── ClickableComponent.html
│   │   ├── clickable-component.js.html
│   │   ├── CloseButton.html
│   │   ├── close-button.js.html
│   │   ├── Component.html
│   │   ├── component.js.html
│   │   ├── control-bar_audio-track-controls_audio-track-button.js.html
│   │   ├── control-bar_audio-track-controls_audio-track-menu-item.js.html
│   │   ├── control-bar_control-bar.js.html
│   │   ├── control-bar_fullscreen-toggle.js.html
│   │   ├── ControlBar.html
│   │   ├── control-bar_live-display.js.html
│   │   ├── control-bar_mute-toggle.js.html
│   │   ├── control-bar_playback-rate-menu_playback-rate-menu-button.js.html
│   │   ├── control-bar_playback-rate-menu_playback-rate-menu-item.js.html
│   │   ├── control-bar_play-toggle.js.html
│   │   ├── control-bar_progress-control_load-progress-bar.js.html
│   │   ├── control-bar_progress-control_mouse-time-display.js.html
│   │   ├── control-bar_progress-control_play-progress-bar.js.html
│   │   ├── control-bar_progress-control_progress-control.js.html
│   │   ├── control-bar_progress-control_seek-bar.js.html
│   │   ├── control-bar_progress-control_time-tooltip.js.html
│   │   ├── control-bar_spacer-controls_custom-control-spacer.js.html
│   │   ├── control-bar_spacer-controls_spacer.js.html
│   │   ├── control-bar_text-track-controls_captions-button.js.html
│   │   ├── control-bar_text-track-controls_caption-settings-menu-item.js.html
│   │   ├── control-bar_text-track-controls_chapters-button.js.html
│   │   ├── control-bar_text-track-controls_chapters-track-menu-item.js.html
│   │   ├── control-bar_text-track-controls_descriptions-button.js.html
│   │   ├── control-bar_text-track-controls_off-text-track-menu-item.js.html
│   │   ├── control-bar_text-track-controls_subs-caps-button.js.html
│   │   ├── control-bar_text-track-controls_subs-caps-menu-item.js.html
│   │   ├── control-bar_text-track-controls_subtitles-button.js.html
│   │   ├── control-bar_text-track-controls_text-track-button.js.html
│   │   ├── control-bar_text-track-controls_text-track-menu-item.js.html
│   │   ├── control-bar_time-controls_current-time-display.js.html
│   │   ├── control-bar_time-controls_duration-display.js.html
│   │   ├── control-bar_time-controls_remaining-time-display.js.html
│   │   ├── control-bar_time-controls_time-divider.js.html
│   │   ├── control-bar_track-button.js.html
│   │   ├── control-bar_volume-control_volume-bar.js.html
│   │   ├── control-bar_volume-control_volume-control.js.html
│   │   ├── control-bar_volume-control_volume-level.js.html
│   │   ├── control-bar_volume-panel.js.html
│   │   ├── CurrentTimeDisplay.html
│   │   ├── CustomControlSpacer.html
│   │   ├── DescriptionsButton.html
│   │   ├── DurationDisplay.html
│   │   ├── ErrorDisplay.html
│   │   ├── error-display.js.html
│   │   ├── EventTarget.html
│   │   ├── event-target.js.html
│   │   ├── extend.js.html
│   │   ├── fonts
│   │   │   ├── glyphicons-halflings-regular.eot
│   │   │   ├── glyphicons-halflings-regular.svg
│   │   │   ├── glyphicons-halflings-regular.ttf
│   │   │   ├── glyphicons-halflings-regular.woff
│   │   │   └── glyphicons-halflings-regular.woff2
│   │   ├── fullscreen-api.js.html
│   │   ├── FullscreenToggle.html
│   │   ├── Html5.html
│   │   ├── HTMLTrackElement.html
│   │   ├── HtmlTrackElementList.html
│   │   ├── img
│   │   │   └── toast-ui.png
│   │   ├── index.html
│   │   ├── LiveDisplay.html
│   │   ├── LoadingSpinner.html
│   │   ├── loading-spinner.js.html
│   │   ├── LoadProgressBar.html
│   │   ├── MediaError.html
│   │   ├── media-error.js.html
│   │   ├── MediaLoader.html
│   │   ├── MenuButton.html
│   │   ├── Menu.html
│   │   ├── MenuItem.html
│   │   ├── menu_menu-button.js.html
│   │   ├── menu_menu-item.js.html
│   │   ├── menu_menu.js.html
│   │   ├── mixins_evented.js.html
│   │   ├── mixins_stateful.js.html
│   │   ├── ModalDialog.html
│   │   ├── modal-dialog.js.html
│   │   ├── module-browser.html
│   │   ├── module-buffer.html
│   │   ├── module-computed-style.html
│   │   ├── module-dom-data.html
│   │   ├── module-dom.html
│   │   ├── module-evented-EventedMixin.html
│   │   ├── module-evented.html
│   │   ├── module-events.html
│   │   ├── module-extend.html
│   │   ├── module-filter-source.html
│   │   ├── module-fn.html
│   │   ├── module-Format-time.html
│   │   ├── module-guid.html
│   │   ├── module-log.html
│   │   ├── module-log-log.html
│   │   ├── module-merge-options.html
│   │   ├── module-obj.html
│   │   ├── module-setup.html
│   │   ├── module-stateful.html
│   │   ├── module-stateful-StatefulMixin.html
│   │   ├── module-stylesheet.html
│   │   ├── module-text-track-list-converter.html
│   │   ├── module-time-ranges.html
│   │   ├── module-to-title-case.html
│   │   ├── module-url.html
│   │   ├── module-videojs.html
│   │   ├── module-videojs-videojs.AudioTrack.videojs.AudioTrack.html
│   │   ├── module-videojs-videojs.EventTarget.videojs.EventTarget.html
│   │   ├── module-videojs-videojs.TextTrack.videojs.TextTrack.html
│   │   ├── module-videojs-videojs.VideoTrack.videojs.VideoTrack.html
│   │   ├── MouseTimeDisplay.html
│   │   ├── MuteToggle.html
│   │   ├── OffTextTrackMenuItem.html
│   │   ├── PlaybackRateMenuButton.html
│   │   ├── PlaybackRateMenuItem.html
│   │   ├── Player.html
│   │   ├── player.js.html
│   │   ├── PlayProgressBar.html
│   │   ├── PlayToggle.html
│   │   ├── Plugin.html
│   │   ├── plugin.js.html
│   │   ├── PopupButton.html
│   │   ├── Popup.html
│   │   ├── popup_popup-button.js.html
│   │   ├── popup_popup.js.html
│   │   ├── PosterImage.html
│   │   ├── poster-image.js.html
│   │   ├── ProgressControl.html
│   │   ├── RemainingTimeDisplay.html
│   │   ├── scripts
│   │   │   ├── jquery.min.js
│   │   │   ├── linenumber.js
│   │   │   ├── prettify
│   │   │   │   ├── Apache-License-2.0.txt
│   │   │   │   ├── lang-css.js
│   │   │   │   └── prettify.js
│   │   │   └── tui-doc.js
│   │   ├── SeekBar.html
│   │   ├── setup.js.html
│   │   ├── Slider.html
│   │   ├── slider_slider.js.html
│   │   ├── Spacer.html
│   │   ├── styles
│   │   │   ├── bootstrap.min.css
│   │   │   ├── prettify-jsdoc.css
│   │   │   ├── prettify-tomorrow.css
│   │   │   ├── tui-doc.css
│   │   │   └── videojs.css
│   │   ├── SubsCapsButton.html
│   │   ├── SubsCapsMenuItem.html
│   │   ├── SubtitlesButton.html
│   │   ├── Tech.html
│   │   ├── tech_html5.js.html
│   │   ├── tech_loader.js.html
│   │   ├── tech_tech.js.html
│   │   ├── TextTrackButton.html
│   │   ├── TextTrackCueList.html
│   │   ├── TextTrackDisplay.html
│   │   ├── TextTrack.html
│   │   ├── TextTrackList.html
│   │   ├── TextTrackMenuItem.html
│   │   ├── TextTrackSettings.html
│   │   ├── TimeDivider.html
│   │   ├── TimeTooltip.html
│   │   ├── TrackButton.html
│   │   ├── Track.html
│   │   ├── TrackList.html
│   │   ├── tracks_audio-track.js.html
│   │   ├── tracks_audio-track-list.js.html
│   │   ├── tracks_html-track-element.js.html
│   │   ├── tracks_html-track-element-list.js.html
│   │   ├── tracks_text-track-cue-list.js.html
│   │   ├── tracks_text-track-display.js.html
│   │   ├── tracks_text-track.js.html
│   │   ├── tracks_text-track-list-converter.js.html
│   │   ├── tracks_text-track-list.js.html
│   │   ├── tracks_text-track-settings.js.html
│   │   ├── tracks_track-enums.js.html
│   │   ├── tracks_track.js.html
│   │   ├── tracks_track-list.js.html
│   │   ├── tracks_video-track.js.html
│   │   ├── tracks_video-track-list.js.html
│   │   ├── tutorial-audio-tracks.html
│   │   ├── tutorial-components.html
│   │   ├── tutorial-debugging.html
│   │   ├── tutorial-event-target.html
│   │   ├── tutorial-faq.html
│   │   ├── tutorial-hooks.html
│   │   ├── tutorial-languages.html
│   │   ├── tutorial-modal-dialog.html
│   │   ├── tutorial-options.html
│   │   ├── tutorial-player-workflows.html
│   │   ├── tutorial-plugins.html
│   │   ├── tutorial-react.html
│   │   ├── tutorials
│   │   │   ├── audio-tracks.md
│   │   │   ├── components.md
│   │   │   ├── debugging.md
│   │   │   ├── event-target.md
│   │   │   ├── faq.md
│   │   │   ├── hooks.md
│   │   │   ├── languages.md
│   │   │   ├── modal-dialog.md
│   │   │   ├── options.md
│   │   │   ├── player-workflows.md
│   │   │   ├── plugins.md
│   │   │   ├── react.md
│   │   │   ├── setup.md
│   │   │   ├── skins.md
│   │   │   ├── tech.md
│   │   │   ├── text-tracks.md
│   │   │   ├── tracks.md
│   │   │   ├── troubleshooting.md
│   │   │   ├── videojs.md
│   │   │   ├── video-tracks.md
│   │   │   └── webpack.md
│   │   ├── tutorial-setup.html
│   │   ├── tutorial-skins.html
│   │   ├── tutorial-tech_.html
│   │   ├── tutorial-text-tracks.html
│   │   ├── tutorial-tracks.html
│   │   ├── tutorial-troubleshooting.html
│   │   ├── tutorial-videojs_.html
│   │   ├── tutorial-video-tracks.html
│   │   ├── tutorial-webpack.html
│   │   ├── utils_browser.js.html
│   │   ├── utils_buffer.js.html
│   │   ├── utils_computed-style.js.html
│   │   ├── utils_dom-data.js.html
│   │   ├── utils_dom.js.html
│   │   ├── utils_events.js.html
│   │   ├── utils_filter-source.js.html
│   │   ├── utils_fn.js.html
│   │   ├── utils_format-time.js.html
│   │   ├── utils_guid.js.html
│   │   ├── utils_log.js.html
│   │   ├── utils_merge-options.js.html
│   │   ├── utils_obj.js.html
│   │   ├── utils_stylesheet.js.html
│   │   ├── utils_time-ranges.js.html
│   │   ├── utils_to-title-case.js.html
│   │   ├── utils_url.js.html
│   │   ├── video.js.html
│   │   ├── VideoTrack.html
│   │   ├── VideoTrackList.html
│   │   ├── VolumeBar.html
│   │   ├── VolumeControl.html
│   │   ├── VolumeLevel.html
│   │   └── VolumePanel.html
│   ├── LICENSE
│   ├── node_modules
│   │   ├── babel-runtime
│   │   │   ├── core-js
│   │   │   │   ├── array
│   │   │   │   │   ├── concat.js
│   │   │   │   │   ├── copy-within.js
│   │   │   │   │   ├── entries.js
│   │   │   │   │   ├── every.js
│   │   │   │   │   ├── fill.js
│   │   │   │   │   ├── filter.js
│   │   │   │   │   ├── find-index.js
│   │   │   │   │   ├── find.js
│   │   │   │   │   ├── for-each.js
│   │   │   │   │   ├── from.js
│   │   │   │   │   ├── includes.js
│   │   │   │   │   ├── index-of.js
│   │   │   │   │   ├── join.js
│   │   │   │   │   ├── keys.js
│   │   │   │   │   ├── last-index-of.js
│   │   │   │   │   ├── map.js
│   │   │   │   │   ├── of.js
│   │   │   │   │   ├── pop.js
│   │   │   │   │   ├── push.js
│   │   │   │   │   ├── reduce.js
│   │   │   │   │   ├── reduce-right.js
│   │   │   │   │   ├── reverse.js
│   │   │   │   │   ├── shift.js
│   │   │   │   │   ├── slice.js
│   │   │   │   │   ├── some.js
│   │   │   │   │   ├── sort.js
│   │   │   │   │   ├── splice.js
│   │   │   │   │   ├── unshift.js
│   │   │   │   │   └── values.js
│   │   │   │   ├── asap.js
│   │   │   │   ├── clear-immediate.js
│   │   │   │   ├── error
│   │   │   │   │   └── is-error.js
│   │   │   │   ├── get-iterator.js
│   │   │   │   ├── is-iterable.js
│   │   │   │   ├── json
│   │   │   │   │   └── stringify.js
│   │   │   │   ├── map.js
│   │   │   │   ├── math
│   │   │   │   │   ├── acosh.js
│   │   │   │   │   ├── asinh.js
│   │   │   │   │   ├── atanh.js
│   │   │   │   │   ├── cbrt.js
│   │   │   │   │   ├── clz32.js
│   │   │   │   │   ├── cosh.js
│   │   │   │   │   ├── expm1.js
│   │   │   │   │   ├── fround.js
│   │   │   │   │   ├── hypot.js
│   │   │   │   │   ├── iaddh.js
│   │   │   │   │   ├── imulh.js
│   │   │   │   │   ├── imul.js
│   │   │   │   │   ├── isubh.js
│   │   │   │   │   ├── log10.js
│   │   │   │   │   ├── log1p.js
│   │   │   │   │   ├── log2.js
│   │   │   │   │   ├── sign.js
│   │   │   │   │   ├── sinh.js
│   │   │   │   │   ├── tanh.js
│   │   │   │   │   ├── trunc.js
│   │   │   │   │   └── umulh.js
│   │   │   │   ├── number
│   │   │   │   │   ├── epsilon.js
│   │   │   │   │   ├── is-finite.js
│   │   │   │   │   ├── is-integer.js
│   │   │   │   │   ├── is-nan.js
│   │   │   │   │   ├── is-safe-integer.js
│   │   │   │   │   ├── max-safe-integer.js
│   │   │   │   │   ├── min-safe-integer.js
│   │   │   │   │   ├── parse-float.js
│   │   │   │   │   └── parse-int.js
│   │   │   │   ├── object
│   │   │   │   │   ├── assign.js
│   │   │   │   │   ├── create.js
│   │   │   │   │   ├── define-properties.js
│   │   │   │   │   ├── define-property.js
│   │   │   │   │   ├── entries.js
│   │   │   │   │   ├── freeze.js
│   │   │   │   │   ├── get-own-property-descriptor.js
│   │   │   │   │   ├── get-own-property-descriptors.js
│   │   │   │   │   ├── get-own-property-names.js
│   │   │   │   │   ├── get-own-property-symbols.js
│   │   │   │   │   ├── get-prototype-of.js
│   │   │   │   │   ├── is-extensible.js
│   │   │   │   │   ├── is-frozen.js
│   │   │   │   │   ├── is.js
│   │   │   │   │   ├── is-sealed.js
│   │   │   │   │   ├── keys.js
│   │   │   │   │   ├── prevent-extensions.js
│   │   │   │   │   ├── seal.js
│   │   │   │   │   ├── set-prototype-of.js
│   │   │   │   │   └── values.js
│   │   │   │   ├── observable.js
│   │   │   │   ├── promise.js
│   │   │   │   ├── reflect
│   │   │   │   │   ├── apply.js
│   │   │   │   │   ├── construct.js
│   │   │   │   │   ├── define-metadata.js
│   │   │   │   │   ├── define-property.js
│   │   │   │   │   ├── delete-metadata.js
│   │   │   │   │   ├── delete-property.js
│   │   │   │   │   ├── enumerate.js
│   │   │   │   │   ├── get.js
│   │   │   │   │   ├── get-metadata.js
│   │   │   │   │   ├── get-metadata-keys.js
│   │   │   │   │   ├── get-own-metadata.js
│   │   │   │   │   ├── get-own-metadata-keys.js
│   │   │   │   │   ├── get-own-property-descriptor.js
│   │   │   │   │   ├── get-prototype-of.js
│   │   │   │   │   ├── has.js
│   │   │   │   │   ├── has-metadata.js
│   │   │   │   │   ├── has-own-metadata.js
│   │   │   │   │   ├── is-extensible.js
│   │   │   │   │   ├── metadata.js
│   │   │   │   │   ├── own-keys.js
│   │   │   │   │   ├── prevent-extensions.js
│   │   │   │   │   ├── set.js
│   │   │   │   │   └── set-prototype-of.js
│   │   │   │   ├── regexp
│   │   │   │   │   └── escape.js
│   │   │   │   ├── set-immediate.js
│   │   │   │   ├── set.js
│   │   │   │   ├── string
│   │   │   │   │   ├── at.js
│   │   │   │   │   ├── code-point-at.js
│   │   │   │   │   ├── ends-with.js
│   │   │   │   │   ├── from-code-point.js
│   │   │   │   │   ├── includes.js
│   │   │   │   │   ├── match-all.js
│   │   │   │   │   ├── pad-end.js
│   │   │   │   │   ├── pad-left.js
│   │   │   │   │   ├── pad-right.js
│   │   │   │   │   ├── pad-start.js
│   │   │   │   │   ├── raw.js
│   │   │   │   │   ├── repeat.js
│   │   │   │   │   ├── starts-with.js
│   │   │   │   │   ├── trim-end.js
│   │   │   │   │   ├── trim.js
│   │   │   │   │   ├── trim-left.js
│   │   │   │   │   ├── trim-right.js
│   │   │   │   │   └── trim-start.js
│   │   │   │   ├── symbol
│   │   │   │   │   ├── async-iterator.js
│   │   │   │   │   ├── for.js
│   │   │   │   │   ├── has-instance.js
│   │   │   │   │   ├── is-concat-spreadable.js
│   │   │   │   │   ├── iterator.js
│   │   │   │   │   ├── key-for.js
│   │   │   │   │   ├── match.js
│   │   │   │   │   ├── observable.js
│   │   │   │   │   ├── replace.js
│   │   │   │   │   ├── search.js
│   │   │   │   │   ├── species.js
│   │   │   │   │   ├── split.js
│   │   │   │   │   ├── to-primitive.js
│   │   │   │   │   ├── to-string-tag.js
│   │   │   │   │   └── unscopables.js
│   │   │   │   ├── symbol.js
│   │   │   │   ├── system
│   │   │   │   │   └── global.js
│   │   │   │   ├── weak-map.js
│   │   │   │   └── weak-set.js
│   │   │   ├── core-js.js
│   │   │   ├── helpers
│   │   │   │   ├── _async-generator-delegate.js
│   │   │   │   ├── async-generator-delegate.js
│   │   │   │   ├── asyncGeneratorDelegate.js
│   │   │   │   ├── _async-generator.js
│   │   │   │   ├── async-generator.js
│   │   │   │   ├── asyncGenerator.js
│   │   │   │   ├── _async-iterator.js
│   │   │   │   ├── async-iterator.js
│   │   │   │   ├── asyncIterator.js
│   │   │   │   ├── _async-to-generator.js
│   │   │   │   ├── async-to-generator.js
│   │   │   │   ├── asyncToGenerator.js
│   │   │   │   ├── _class-call-check.js
│   │   │   │   ├── class-call-check.js
│   │   │   │   ├── classCallCheck.js
│   │   │   │   ├── _create-class.js
│   │   │   │   ├── create-class.js
│   │   │   │   ├── createClass.js
│   │   │   │   ├── _defaults.js
│   │   │   │   ├── defaults.js
│   │   │   │   ├── _define-enumerable-properties.js
│   │   │   │   ├── define-enumerable-properties.js
│   │   │   │   ├── defineEnumerableProperties.js
│   │   │   │   ├── _define-property.js
│   │   │   │   ├── define-property.js
│   │   │   │   ├── defineProperty.js
│   │   │   │   ├── _extends.js
│   │   │   │   ├── extends.js
│   │   │   │   ├── _get.js
│   │   │   │   ├── get.js
│   │   │   │   ├── _inherits.js
│   │   │   │   ├── inherits.js
│   │   │   │   ├── _instanceof.js
│   │   │   │   ├── instanceof.js
│   │   │   │   ├── _interop-require-default.js
│   │   │   │   ├── interop-require-default.js
│   │   │   │   ├── interopRequireDefault.js
│   │   │   │   ├── _interop-require-wildcard.js
│   │   │   │   ├── interop-require-wildcard.js
│   │   │   │   ├── interopRequireWildcard.js
│   │   │   │   ├── _jsx.js
│   │   │   │   ├── jsx.js
│   │   │   │   ├── _new-arrow-check.js
│   │   │   │   ├── new-arrow-check.js
│   │   │   │   ├── newArrowCheck.js
│   │   │   │   ├── _object-destructuring-empty.js
│   │   │   │   ├── object-destructuring-empty.js
│   │   │   │   ├── objectDestructuringEmpty.js
│   │   │   │   ├── _object-without-properties.js
│   │   │   │   ├── object-without-properties.js
│   │   │   │   ├── objectWithoutProperties.js
│   │   │   │   ├── _possible-constructor-return.js
│   │   │   │   ├── possible-constructor-return.js
│   │   │   │   ├── possibleConstructorReturn.js
│   │   │   │   ├── _self-global.js
│   │   │   │   ├── self-global.js
│   │   │   │   ├── selfGlobal.js
│   │   │   │   ├── _set.js
│   │   │   │   ├── set.js
│   │   │   │   ├── _sliced-to-array.js
│   │   │   │   ├── sliced-to-array.js
│   │   │   │   ├── slicedToArray.js
│   │   │   │   ├── _sliced-to-array-loose.js
│   │   │   │   ├── sliced-to-array-loose.js
│   │   │   │   ├── slicedToArrayLoose.js
│   │   │   │   ├── _tagged-template-literal.js
│   │   │   │   ├── tagged-template-literal.js
│   │   │   │   ├── taggedTemplateLiteral.js
│   │   │   │   ├── _tagged-template-literal-loose.js
│   │   │   │   ├── tagged-template-literal-loose.js
│   │   │   │   ├── taggedTemplateLiteralLoose.js
│   │   │   │   ├── _temporal-ref.js
│   │   │   │   ├── temporal-ref.js
│   │   │   │   ├── temporalRef.js
│   │   │   │   ├── _temporal-undefined.js
│   │   │   │   ├── temporal-undefined.js
│   │   │   │   ├── temporalUndefined.js
│   │   │   │   ├── _to-array.js
│   │   │   │   ├── to-array.js
│   │   │   │   ├── toArray.js
│   │   │   │   ├── _to-consumable-array.js
│   │   │   │   ├── to-consumable-array.js
│   │   │   │   ├── toConsumableArray.js
│   │   │   │   ├── _typeof.js
│   │   │   │   └── typeof.js
│   │   │   ├── node_modules
│   │   │   │   ├── core-js
│   │   │   │   │   ├── bower.json
│   │   │   │   │   ├── build
│   │   │   │   │   │   ├── build.ls
│   │   │   │   │   │   ├── config.js
│   │   │   │   │   │   ├── Gruntfile.ls
│   │   │   │   │   │   └── index.js
│   │   │   │   │   ├── CHANGELOG.md
│   │   │   │   │   ├── client
│   │   │   │   │   │   ├── core.js
│   │   │   │   │   │   ├── core.min.js
│   │   │   │   │   │   ├── core.min.js.map
│   │   │   │   │   │   ├── library.js
│   │   │   │   │   │   ├── library.min.js
│   │   │   │   │   │   ├── library.min.js.map
│   │   │   │   │   │   ├── shim.js
│   │   │   │   │   │   ├── shim.min.js
│   │   │   │   │   │   └── shim.min.js.map
│   │   │   │   │   ├── core
│   │   │   │   │   │   ├── delay.js
│   │   │   │   │   │   ├── dict.js
│   │   │   │   │   │   ├── function.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── _.js
│   │   │   │   │   │   ├── number.js
│   │   │   │   │   │   ├── object.js
│   │   │   │   │   │   ├── regexp.js
│   │   │   │   │   │   └── string.js
│   │   │   │   │   ├── es5
│   │   │   │   │   │   └── index.js
│   │   │   │   │   ├── es6
│   │   │   │   │   │   ├── array.js
│   │   │   │   │   │   ├── date.js
│   │   │   │   │   │   ├── function.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   ├── math.js
│   │   │   │   │   │   ├── number.js
│   │   │   │   │   │   ├── object.js
│   │   │   │   │   │   ├── parse-float.js
│   │   │   │   │   │   ├── parse-int.js
│   │   │   │   │   │   ├── promise.js
│   │   │   │   │   │   ├── reflect.js
│   │   │   │   │   │   ├── regexp.js
│   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   ├── string.js
│   │   │   │   │   │   ├── symbol.js
│   │   │   │   │   │   ├── typed.js
│   │   │   │   │   │   ├── weak-map.js
│   │   │   │   │   │   └── weak-set.js
│   │   │   │   │   ├── es7
│   │   │   │   │   │   ├── array.js
│   │   │   │   │   │   ├── asap.js
│   │   │   │   │   │   ├── error.js
│   │   │   │   │   │   ├── global.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   ├── math.js
│   │   │   │   │   │   ├── object.js
│   │   │   │   │   │   ├── observable.js
│   │   │   │   │   │   ├── promise.js
│   │   │   │   │   │   ├── reflect.js
│   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   ├── string.js
│   │   │   │   │   │   ├── symbol.js
│   │   │   │   │   │   ├── system.js
│   │   │   │   │   │   ├── weak-map.js
│   │   │   │   │   │   └── weak-set.js
│   │   │   │   │   ├── fn
│   │   │   │   │   │   ├── array
│   │   │   │   │   │   │   ├── concat.js
│   │   │   │   │   │   │   ├── copy-within.js
│   │   │   │   │   │   │   ├── entries.js
│   │   │   │   │   │   │   ├── every.js
│   │   │   │   │   │   │   ├── fill.js
│   │   │   │   │   │   │   ├── filter.js
│   │   │   │   │   │   │   ├── find-index.js
│   │   │   │   │   │   │   ├── find.js
│   │   │   │   │   │   │   ├── flat-map.js
│   │   │   │   │   │   │   ├── flatten.js
│   │   │   │   │   │   │   ├── for-each.js
│   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── index-of.js
│   │   │   │   │   │   │   ├── is-array.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── join.js
│   │   │   │   │   │   │   ├── keys.js
│   │   │   │   │   │   │   ├── last-index-of.js
│   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   ├── of.js
│   │   │   │   │   │   │   ├── pop.js
│   │   │   │   │   │   │   ├── push.js
│   │   │   │   │   │   │   ├── reduce.js
│   │   │   │   │   │   │   ├── reduce-right.js
│   │   │   │   │   │   │   ├── reverse.js
│   │   │   │   │   │   │   ├── shift.js
│   │   │   │   │   │   │   ├── slice.js
│   │   │   │   │   │   │   ├── some.js
│   │   │   │   │   │   │   ├── sort.js
│   │   │   │   │   │   │   ├── splice.js
│   │   │   │   │   │   │   ├── unshift.js
│   │   │   │   │   │   │   ├── values.js
│   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   ├── copy-within.js
│   │   │   │   │   │   │   ├── entries.js
│   │   │   │   │   │   │   ├── every.js
│   │   │   │   │   │   │   ├── fill.js
│   │   │   │   │   │   │   ├── filter.js
│   │   │   │   │   │   │   ├── find-index.js
│   │   │   │   │   │   │   ├── find.js
│   │   │   │   │   │   │   ├── flat-map.js
│   │   │   │   │   │   │   ├── flatten.js
│   │   │   │   │   │   │   ├── for-each.js
│   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── index-of.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── join.js
│   │   │   │   │   │   │   ├── keys.js
│   │   │   │   │   │   │   ├── last-index-of.js
│   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   ├── reduce.js
│   │   │   │   │   │   │   ├── reduce-right.js
│   │   │   │   │   │   │   ├── slice.js
│   │   │   │   │   │   │   ├── some.js
│   │   │   │   │   │   │   ├── sort.js
│   │   │   │   │   │   │   └── values.js
│   │   │   │   │   │   ├── asap.js
│   │   │   │   │   │   ├── clear-immediate.js
│   │   │   │   │   │   ├── date
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── now.js
│   │   │   │   │   │   │   ├── to-iso-string.js
│   │   │   │   │   │   │   ├── to-json.js
│   │   │   │   │   │   │   ├── to-primitive.js
│   │   │   │   │   │   │   └── to-string.js
│   │   │   │   │   │   ├── delay.js
│   │   │   │   │   │   ├── dict.js
│   │   │   │   │   │   ├── dom-collections
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── iterator.js
│   │   │   │   │   │   ├── error
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── is-error.js
│   │   │   │   │   │   ├── function
│   │   │   │   │   │   │   ├── bind.js
│   │   │   │   │   │   │   ├── has-instance.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── name.js
│   │   │   │   │   │   │   ├── part.js
│   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   ├── bind.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── part.js
│   │   │   │   │   │   ├── get-iterator.js
│   │   │   │   │   │   ├── get-iterator-method.js
│   │   │   │   │   │   ├── global.js
│   │   │   │   │   │   ├── is-iterable.js
│   │   │   │   │   │   ├── _.js
│   │   │   │   │   │   ├── json
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── stringify.js
│   │   │   │   │   │   ├── map
│   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   ├── math
│   │   │   │   │   │   │   ├── acosh.js
│   │   │   │   │   │   │   ├── asinh.js
│   │   │   │   │   │   │   ├── atanh.js
│   │   │   │   │   │   │   ├── cbrt.js
│   │   │   │   │   │   │   ├── clamp.js
│   │   │   │   │   │   │   ├── clz32.js
│   │   │   │   │   │   │   ├── cosh.js
│   │   │   │   │   │   │   ├── deg-per-rad.js
│   │   │   │   │   │   │   ├── degrees.js
│   │   │   │   │   │   │   ├── expm1.js
│   │   │   │   │   │   │   ├── fround.js
│   │   │   │   │   │   │   ├── fscale.js
│   │   │   │   │   │   │   ├── hypot.js
│   │   │   │   │   │   │   ├── iaddh.js
│   │   │   │   │   │   │   ├── imulh.js
│   │   │   │   │   │   │   ├── imul.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── isubh.js
│   │   │   │   │   │   │   ├── log10.js
│   │   │   │   │   │   │   ├── log1p.js
│   │   │   │   │   │   │   ├── log2.js
│   │   │   │   │   │   │   ├── radians.js
│   │   │   │   │   │   │   ├── rad-per-deg.js
│   │   │   │   │   │   │   ├── scale.js
│   │   │   │   │   │   │   ├── signbit.js
│   │   │   │   │   │   │   ├── sign.js
│   │   │   │   │   │   │   ├── sinh.js
│   │   │   │   │   │   │   ├── tanh.js
│   │   │   │   │   │   │   ├── trunc.js
│   │   │   │   │   │   │   └── umulh.js
│   │   │   │   │   │   ├── number
│   │   │   │   │   │   │   ├── constructor.js
│   │   │   │   │   │   │   ├── epsilon.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── is-finite.js
│   │   │   │   │   │   │   ├── is-integer.js
│   │   │   │   │   │   │   ├── is-nan.js
│   │   │   │   │   │   │   ├── is-safe-integer.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── max-safe-integer.js
│   │   │   │   │   │   │   ├── min-safe-integer.js
│   │   │   │   │   │   │   ├── parse-float.js
│   │   │   │   │   │   │   ├── parse-int.js
│   │   │   │   │   │   │   ├── to-fixed.js
│   │   │   │   │   │   │   ├── to-precision.js
│   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── to-fixed.js
│   │   │   │   │   │   │   └── to-precision.js
│   │   │   │   │   │   ├── object
│   │   │   │   │   │   │   ├── assign.js
│   │   │   │   │   │   │   ├── classof.js
│   │   │   │   │   │   │   ├── create.js
│   │   │   │   │   │   │   ├── define-getter.js
│   │   │   │   │   │   │   ├── define.js
│   │   │   │   │   │   │   ├── define-properties.js
│   │   │   │   │   │   │   ├── define-property.js
│   │   │   │   │   │   │   ├── define-setter.js
│   │   │   │   │   │   │   ├── entries.js
│   │   │   │   │   │   │   ├── freeze.js
│   │   │   │   │   │   │   ├── get-own-property-descriptor.js
│   │   │   │   │   │   │   ├── get-own-property-descriptors.js
│   │   │   │   │   │   │   ├── get-own-property-names.js
│   │   │   │   │   │   │   ├── get-own-property-symbols.js
│   │   │   │   │   │   │   ├── get-prototype-of.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── is-extensible.js
│   │   │   │   │   │   │   ├── is-frozen.js
│   │   │   │   │   │   │   ├── is.js
│   │   │   │   │   │   │   ├── is-object.js
│   │   │   │   │   │   │   ├── is-sealed.js
│   │   │   │   │   │   │   ├── keys.js
│   │   │   │   │   │   │   ├── lookup-getter.js
│   │   │   │   │   │   │   ├── lookup-setter.js
│   │   │   │   │   │   │   ├── make.js
│   │   │   │   │   │   │   ├── prevent-extensions.js
│   │   │   │   │   │   │   ├── seal.js
│   │   │   │   │   │   │   ├── set-prototype-of.js
│   │   │   │   │   │   │   └── values.js
│   │   │   │   │   │   ├── observable.js
│   │   │   │   │   │   ├── parse-float.js
│   │   │   │   │   │   ├── parse-int.js
│   │   │   │   │   │   ├── promise
│   │   │   │   │   │   │   ├── finally.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── try.js
│   │   │   │   │   │   ├── promise.js
│   │   │   │   │   │   ├── reflect
│   │   │   │   │   │   │   ├── apply.js
│   │   │   │   │   │   │   ├── construct.js
│   │   │   │   │   │   │   ├── define-metadata.js
│   │   │   │   │   │   │   ├── define-property.js
│   │   │   │   │   │   │   ├── delete-metadata.js
│   │   │   │   │   │   │   ├── delete-property.js
│   │   │   │   │   │   │   ├── enumerate.js
│   │   │   │   │   │   │   ├── get.js
│   │   │   │   │   │   │   ├── get-metadata.js
│   │   │   │   │   │   │   ├── get-metadata-keys.js
│   │   │   │   │   │   │   ├── get-own-metadata.js
│   │   │   │   │   │   │   ├── get-own-metadata-keys.js
│   │   │   │   │   │   │   ├── get-own-property-descriptor.js
│   │   │   │   │   │   │   ├── get-prototype-of.js
│   │   │   │   │   │   │   ├── has.js
│   │   │   │   │   │   │   ├── has-metadata.js
│   │   │   │   │   │   │   ├── has-own-metadata.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── is-extensible.js
│   │   │   │   │   │   │   ├── metadata.js
│   │   │   │   │   │   │   ├── own-keys.js
│   │   │   │   │   │   │   ├── prevent-extensions.js
│   │   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   │   └── set-prototype-of.js
│   │   │   │   │   │   ├── regexp
│   │   │   │   │   │   │   ├── constructor.js
│   │   │   │   │   │   │   ├── escape.js
│   │   │   │   │   │   │   ├── flags.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── match.js
│   │   │   │   │   │   │   ├── replace.js
│   │   │   │   │   │   │   ├── search.js
│   │   │   │   │   │   │   ├── split.js
│   │   │   │   │   │   │   └── to-string.js
│   │   │   │   │   │   ├── set
│   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   ├── set-immediate.js
│   │   │   │   │   │   ├── set-interval.js
│   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   ├── set-timeout.js
│   │   │   │   │   │   ├── string
│   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   ├── at.js
│   │   │   │   │   │   │   ├── big.js
│   │   │   │   │   │   │   ├── blink.js
│   │   │   │   │   │   │   ├── bold.js
│   │   │   │   │   │   │   ├── code-point-at.js
│   │   │   │   │   │   │   ├── ends-with.js
│   │   │   │   │   │   │   ├── escape-html.js
│   │   │   │   │   │   │   ├── fixed.js
│   │   │   │   │   │   │   ├── fontcolor.js
│   │   │   │   │   │   │   ├── fontsize.js
│   │   │   │   │   │   │   ├── from-code-point.js
│   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── italics.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── link.js
│   │   │   │   │   │   │   ├── match-all.js
│   │   │   │   │   │   │   ├── pad-end.js
│   │   │   │   │   │   │   ├── pad-start.js
│   │   │   │   │   │   │   ├── raw.js
│   │   │   │   │   │   │   ├── repeat.js
│   │   │   │   │   │   │   ├── small.js
│   │   │   │   │   │   │   ├── starts-with.js
│   │   │   │   │   │   │   ├── strike.js
│   │   │   │   │   │   │   ├── sub.js
│   │   │   │   │   │   │   ├── sup.js
│   │   │   │   │   │   │   ├── trim-end.js
│   │   │   │   │   │   │   ├── trim.js
│   │   │   │   │   │   │   ├── trim-left.js
│   │   │   │   │   │   │   ├── trim-right.js
│   │   │   │   │   │   │   ├── trim-start.js
│   │   │   │   │   │   │   ├── unescape-html.js
│   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   ├── at.js
│   │   │   │   │   │   │   ├── big.js
│   │   │   │   │   │   │   ├── blink.js
│   │   │   │   │   │   │   ├── bold.js
│   │   │   │   │   │   │   ├── code-point-at.js
│   │   │   │   │   │   │   ├── ends-with.js
│   │   │   │   │   │   │   ├── escape-html.js
│   │   │   │   │   │   │   ├── fixed.js
│   │   │   │   │   │   │   ├── fontcolor.js
│   │   │   │   │   │   │   ├── fontsize.js
│   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── italics.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── link.js
│   │   │   │   │   │   │   ├── match-all.js
│   │   │   │   │   │   │   ├── pad-end.js
│   │   │   │   │   │   │   ├── pad-start.js
│   │   │   │   │   │   │   ├── repeat.js
│   │   │   │   │   │   │   ├── small.js
│   │   │   │   │   │   │   ├── starts-with.js
│   │   │   │   │   │   │   ├── strike.js
│   │   │   │   │   │   │   ├── sub.js
│   │   │   │   │   │   │   ├── sup.js
│   │   │   │   │   │   │   ├── trim-end.js
│   │   │   │   │   │   │   ├── trim.js
│   │   │   │   │   │   │   ├── trim-left.js
│   │   │   │   │   │   │   ├── trim-right.js
│   │   │   │   │   │   │   ├── trim-start.js
│   │   │   │   │   │   │   └── unescape-html.js
│   │   │   │   │   │   ├── symbol
│   │   │   │   │   │   │   ├── async-iterator.js
│   │   │   │   │   │   │   ├── for.js
│   │   │   │   │   │   │   ├── has-instance.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── is-concat-spreadable.js
│   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   ├── key-for.js
│   │   │   │   │   │   │   ├── match.js
│   │   │   │   │   │   │   ├── observable.js
│   │   │   │   │   │   │   ├── replace.js
│   │   │   │   │   │   │   ├── search.js
│   │   │   │   │   │   │   ├── species.js
│   │   │   │   │   │   │   ├── split.js
│   │   │   │   │   │   │   ├── to-primitive.js
│   │   │   │   │   │   │   ├── to-string-tag.js
│   │   │   │   │   │   │   └── unscopables.js
│   │   │   │   │   │   ├── system
│   │   │   │   │   │   │   ├── global.js
│   │   │   │   │   │   │   └── index.js
│   │   │   │   │   │   ├── typed
│   │   │   │   │   │   │   ├── array-buffer.js
│   │   │   │   │   │   │   ├── data-view.js
│   │   │   │   │   │   │   ├── float32-array.js
│   │   │   │   │   │   │   ├── float64-array.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── int16-array.js
│   │   │   │   │   │   │   ├── int32-array.js
│   │   │   │   │   │   │   ├── int8-array.js
│   │   │   │   │   │   │   ├── uint16-array.js
│   │   │   │   │   │   │   ├── uint32-array.js
│   │   │   │   │   │   │   ├── uint8-array.js
│   │   │   │   │   │   │   └── uint8-clamped-array.js
│   │   │   │   │   │   ├── weak-map
│   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   ├── weak-map.js
│   │   │   │   │   │   ├── weak-set
│   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   └── weak-set.js
│   │   │   │   │   ├── Gruntfile.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── library
│   │   │   │   │   │   ├── core
│   │   │   │   │   │   │   ├── delay.js
│   │   │   │   │   │   │   ├── dict.js
│   │   │   │   │   │   │   ├── function.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── _.js
│   │   │   │   │   │   │   ├── number.js
│   │   │   │   │   │   │   ├── object.js
│   │   │   │   │   │   │   ├── regexp.js
│   │   │   │   │   │   │   └── string.js
│   │   │   │   │   │   ├── es5
│   │   │   │   │   │   │   └── index.js
│   │   │   │   │   │   ├── es6
│   │   │   │   │   │   │   ├── array.js
│   │   │   │   │   │   │   ├── date.js
│   │   │   │   │   │   │   ├── function.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   ├── math.js
│   │   │   │   │   │   │   ├── number.js
│   │   │   │   │   │   │   ├── object.js
│   │   │   │   │   │   │   ├── parse-float.js
│   │   │   │   │   │   │   ├── parse-int.js
│   │   │   │   │   │   │   ├── promise.js
│   │   │   │   │   │   │   ├── reflect.js
│   │   │   │   │   │   │   ├── regexp.js
│   │   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   │   ├── string.js
│   │   │   │   │   │   │   ├── symbol.js
│   │   │   │   │   │   │   ├── typed.js
│   │   │   │   │   │   │   ├── weak-map.js
│   │   │   │   │   │   │   └── weak-set.js
│   │   │   │   │   │   ├── es7
│   │   │   │   │   │   │   ├── array.js
│   │   │   │   │   │   │   ├── asap.js
│   │   │   │   │   │   │   ├── error.js
│   │   │   │   │   │   │   ├── global.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   ├── math.js
│   │   │   │   │   │   │   ├── object.js
│   │   │   │   │   │   │   ├── observable.js
│   │   │   │   │   │   │   ├── promise.js
│   │   │   │   │   │   │   ├── reflect.js
│   │   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   │   ├── string.js
│   │   │   │   │   │   │   ├── symbol.js
│   │   │   │   │   │   │   ├── system.js
│   │   │   │   │   │   │   ├── weak-map.js
│   │   │   │   │   │   │   └── weak-set.js
│   │   │   │   │   │   ├── fn
│   │   │   │   │   │   │   ├── array
│   │   │   │   │   │   │   │   ├── concat.js
│   │   │   │   │   │   │   │   ├── copy-within.js
│   │   │   │   │   │   │   │   ├── entries.js
│   │   │   │   │   │   │   │   ├── every.js
│   │   │   │   │   │   │   │   ├── fill.js
│   │   │   │   │   │   │   │   ├── filter.js
│   │   │   │   │   │   │   │   ├── find-index.js
│   │   │   │   │   │   │   │   ├── find.js
│   │   │   │   │   │   │   │   ├── flat-map.js
│   │   │   │   │   │   │   │   ├── flatten.js
│   │   │   │   │   │   │   │   ├── for-each.js
│   │   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── index-of.js
│   │   │   │   │   │   │   │   ├── is-array.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── join.js
│   │   │   │   │   │   │   │   ├── keys.js
│   │   │   │   │   │   │   │   ├── last-index-of.js
│   │   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   │   ├── of.js
│   │   │   │   │   │   │   │   ├── pop.js
│   │   │   │   │   │   │   │   ├── push.js
│   │   │   │   │   │   │   │   ├── reduce.js
│   │   │   │   │   │   │   │   ├── reduce-right.js
│   │   │   │   │   │   │   │   ├── reverse.js
│   │   │   │   │   │   │   │   ├── shift.js
│   │   │   │   │   │   │   │   ├── slice.js
│   │   │   │   │   │   │   │   ├── some.js
│   │   │   │   │   │   │   │   ├── sort.js
│   │   │   │   │   │   │   │   ├── splice.js
│   │   │   │   │   │   │   │   ├── unshift.js
│   │   │   │   │   │   │   │   ├── values.js
│   │   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   │   ├── copy-within.js
│   │   │   │   │   │   │   │   ├── entries.js
│   │   │   │   │   │   │   │   ├── every.js
│   │   │   │   │   │   │   │   ├── fill.js
│   │   │   │   │   │   │   │   ├── filter.js
│   │   │   │   │   │   │   │   ├── find-index.js
│   │   │   │   │   │   │   │   ├── find.js
│   │   │   │   │   │   │   │   ├── flat-map.js
│   │   │   │   │   │   │   │   ├── flatten.js
│   │   │   │   │   │   │   │   ├── for-each.js
│   │   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── index-of.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── join.js
│   │   │   │   │   │   │   │   ├── keys.js
│   │   │   │   │   │   │   │   ├── last-index-of.js
│   │   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   │   ├── reduce.js
│   │   │   │   │   │   │   │   ├── reduce-right.js
│   │   │   │   │   │   │   │   ├── slice.js
│   │   │   │   │   │   │   │   ├── some.js
│   │   │   │   │   │   │   │   ├── sort.js
│   │   │   │   │   │   │   │   └── values.js
│   │   │   │   │   │   │   ├── asap.js
│   │   │   │   │   │   │   ├── clear-immediate.js
│   │   │   │   │   │   │   ├── date
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── now.js
│   │   │   │   │   │   │   │   ├── to-iso-string.js
│   │   │   │   │   │   │   │   ├── to-json.js
│   │   │   │   │   │   │   │   ├── to-primitive.js
│   │   │   │   │   │   │   │   └── to-string.js
│   │   │   │   │   │   │   ├── delay.js
│   │   │   │   │   │   │   ├── dict.js
│   │   │   │   │   │   │   ├── dom-collections
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── iterator.js
│   │   │   │   │   │   │   ├── error
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── is-error.js
│   │   │   │   │   │   │   ├── function
│   │   │   │   │   │   │   │   ├── bind.js
│   │   │   │   │   │   │   │   ├── has-instance.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── name.js
│   │   │   │   │   │   │   │   ├── part.js
│   │   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   │   ├── bind.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── part.js
│   │   │   │   │   │   │   ├── get-iterator.js
│   │   │   │   │   │   │   ├── get-iterator-method.js
│   │   │   │   │   │   │   ├── global.js
│   │   │   │   │   │   │   ├── is-iterable.js
│   │   │   │   │   │   │   ├── _.js
│   │   │   │   │   │   │   ├── json
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── stringify.js
│   │   │   │   │   │   │   ├── map
│   │   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   │   ├── map.js
│   │   │   │   │   │   │   ├── math
│   │   │   │   │   │   │   │   ├── acosh.js
│   │   │   │   │   │   │   │   ├── asinh.js
│   │   │   │   │   │   │   │   ├── atanh.js
│   │   │   │   │   │   │   │   ├── cbrt.js
│   │   │   │   │   │   │   │   ├── clamp.js
│   │   │   │   │   │   │   │   ├── clz32.js
│   │   │   │   │   │   │   │   ├── cosh.js
│   │   │   │   │   │   │   │   ├── deg-per-rad.js
│   │   │   │   │   │   │   │   ├── degrees.js
│   │   │   │   │   │   │   │   ├── expm1.js
│   │   │   │   │   │   │   │   ├── fround.js
│   │   │   │   │   │   │   │   ├── fscale.js
│   │   │   │   │   │   │   │   ├── hypot.js
│   │   │   │   │   │   │   │   ├── iaddh.js
│   │   │   │   │   │   │   │   ├── imulh.js
│   │   │   │   │   │   │   │   ├── imul.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── isubh.js
│   │   │   │   │   │   │   │   ├── log10.js
│   │   │   │   │   │   │   │   ├── log1p.js
│   │   │   │   │   │   │   │   ├── log2.js
│   │   │   │   │   │   │   │   ├── radians.js
│   │   │   │   │   │   │   │   ├── rad-per-deg.js
│   │   │   │   │   │   │   │   ├── scale.js
│   │   │   │   │   │   │   │   ├── signbit.js
│   │   │   │   │   │   │   │   ├── sign.js
│   │   │   │   │   │   │   │   ├── sinh.js
│   │   │   │   │   │   │   │   ├── tanh.js
│   │   │   │   │   │   │   │   ├── trunc.js
│   │   │   │   │   │   │   │   └── umulh.js
│   │   │   │   │   │   │   ├── number
│   │   │   │   │   │   │   │   ├── constructor.js
│   │   │   │   │   │   │   │   ├── epsilon.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── is-finite.js
│   │   │   │   │   │   │   │   ├── is-integer.js
│   │   │   │   │   │   │   │   ├── is-nan.js
│   │   │   │   │   │   │   │   ├── is-safe-integer.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── max-safe-integer.js
│   │   │   │   │   │   │   │   ├── min-safe-integer.js
│   │   │   │   │   │   │   │   ├── parse-float.js
│   │   │   │   │   │   │   │   ├── parse-int.js
│   │   │   │   │   │   │   │   ├── to-fixed.js
│   │   │   │   │   │   │   │   ├── to-precision.js
│   │   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── to-fixed.js
│   │   │   │   │   │   │   │   └── to-precision.js
│   │   │   │   │   │   │   ├── object
│   │   │   │   │   │   │   │   ├── assign.js
│   │   │   │   │   │   │   │   ├── classof.js
│   │   │   │   │   │   │   │   ├── create.js
│   │   │   │   │   │   │   │   ├── define-getter.js
│   │   │   │   │   │   │   │   ├── define.js
│   │   │   │   │   │   │   │   ├── define-properties.js
│   │   │   │   │   │   │   │   ├── define-property.js
│   │   │   │   │   │   │   │   ├── define-setter.js
│   │   │   │   │   │   │   │   ├── entries.js
│   │   │   │   │   │   │   │   ├── freeze.js
│   │   │   │   │   │   │   │   ├── get-own-property-descriptor.js
│   │   │   │   │   │   │   │   ├── get-own-property-descriptors.js
│   │   │   │   │   │   │   │   ├── get-own-property-names.js
│   │   │   │   │   │   │   │   ├── get-own-property-symbols.js
│   │   │   │   │   │   │   │   ├── get-prototype-of.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── is-extensible.js
│   │   │   │   │   │   │   │   ├── is-frozen.js
│   │   │   │   │   │   │   │   ├── is.js
│   │   │   │   │   │   │   │   ├── is-object.js
│   │   │   │   │   │   │   │   ├── is-sealed.js
│   │   │   │   │   │   │   │   ├── keys.js
│   │   │   │   │   │   │   │   ├── lookup-getter.js
│   │   │   │   │   │   │   │   ├── lookup-setter.js
│   │   │   │   │   │   │   │   ├── make.js
│   │   │   │   │   │   │   │   ├── prevent-extensions.js
│   │   │   │   │   │   │   │   ├── seal.js
│   │   │   │   │   │   │   │   ├── set-prototype-of.js
│   │   │   │   │   │   │   │   └── values.js
│   │   │   │   │   │   │   ├── observable.js
│   │   │   │   │   │   │   ├── parse-float.js
│   │   │   │   │   │   │   ├── parse-int.js
│   │   │   │   │   │   │   ├── promise
│   │   │   │   │   │   │   │   ├── finally.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── try.js
│   │   │   │   │   │   │   ├── promise.js
│   │   │   │   │   │   │   ├── reflect
│   │   │   │   │   │   │   │   ├── apply.js
│   │   │   │   │   │   │   │   ├── construct.js
│   │   │   │   │   │   │   │   ├── define-metadata.js
│   │   │   │   │   │   │   │   ├── define-property.js
│   │   │   │   │   │   │   │   ├── delete-metadata.js
│   │   │   │   │   │   │   │   ├── delete-property.js
│   │   │   │   │   │   │   │   ├── enumerate.js
│   │   │   │   │   │   │   │   ├── get.js
│   │   │   │   │   │   │   │   ├── get-metadata.js
│   │   │   │   │   │   │   │   ├── get-metadata-keys.js
│   │   │   │   │   │   │   │   ├── get-own-metadata.js
│   │   │   │   │   │   │   │   ├── get-own-metadata-keys.js
│   │   │   │   │   │   │   │   ├── get-own-property-descriptor.js
│   │   │   │   │   │   │   │   ├── get-prototype-of.js
│   │   │   │   │   │   │   │   ├── has.js
│   │   │   │   │   │   │   │   ├── has-metadata.js
│   │   │   │   │   │   │   │   ├── has-own-metadata.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── is-extensible.js
│   │   │   │   │   │   │   │   ├── metadata.js
│   │   │   │   │   │   │   │   ├── own-keys.js
│   │   │   │   │   │   │   │   ├── prevent-extensions.js
│   │   │   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   │   │   └── set-prototype-of.js
│   │   │   │   │   │   │   ├── regexp
│   │   │   │   │   │   │   │   ├── constructor.js
│   │   │   │   │   │   │   │   ├── escape.js
│   │   │   │   │   │   │   │   ├── flags.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── match.js
│   │   │   │   │   │   │   │   ├── replace.js
│   │   │   │   │   │   │   │   ├── search.js
│   │   │   │   │   │   │   │   ├── split.js
│   │   │   │   │   │   │   │   └── to-string.js
│   │   │   │   │   │   │   ├── set
│   │   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   │   ├── set-immediate.js
│   │   │   │   │   │   │   ├── set-interval.js
│   │   │   │   │   │   │   ├── set.js
│   │   │   │   │   │   │   ├── set-timeout.js
│   │   │   │   │   │   │   ├── string
│   │   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   │   ├── at.js
│   │   │   │   │   │   │   │   ├── big.js
│   │   │   │   │   │   │   │   ├── blink.js
│   │   │   │   │   │   │   │   ├── bold.js
│   │   │   │   │   │   │   │   ├── code-point-at.js
│   │   │   │   │   │   │   │   ├── ends-with.js
│   │   │   │   │   │   │   │   ├── escape-html.js
│   │   │   │   │   │   │   │   ├── fixed.js
│   │   │   │   │   │   │   │   ├── fontcolor.js
│   │   │   │   │   │   │   │   ├── fontsize.js
│   │   │   │   │   │   │   │   ├── from-code-point.js
│   │   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── italics.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── link.js
│   │   │   │   │   │   │   │   ├── match-all.js
│   │   │   │   │   │   │   │   ├── pad-end.js
│   │   │   │   │   │   │   │   ├── pad-start.js
│   │   │   │   │   │   │   │   ├── raw.js
│   │   │   │   │   │   │   │   ├── repeat.js
│   │   │   │   │   │   │   │   ├── small.js
│   │   │   │   │   │   │   │   ├── starts-with.js
│   │   │   │   │   │   │   │   ├── strike.js
│   │   │   │   │   │   │   │   ├── sub.js
│   │   │   │   │   │   │   │   ├── sup.js
│   │   │   │   │   │   │   │   ├── trim-end.js
│   │   │   │   │   │   │   │   ├── trim.js
│   │   │   │   │   │   │   │   ├── trim-left.js
│   │   │   │   │   │   │   │   ├── trim-right.js
│   │   │   │   │   │   │   │   ├── trim-start.js
│   │   │   │   │   │   │   │   ├── unescape-html.js
│   │   │   │   │   │   │   │   └── virtual
│   │   │   │   │   │   │   │   ├── anchor.js
│   │   │   │   │   │   │   │   ├── at.js
│   │   │   │   │   │   │   │   ├── big.js
│   │   │   │   │   │   │   │   ├── blink.js
│   │   │   │   │   │   │   │   ├── bold.js
│   │   │   │   │   │   │   │   ├── code-point-at.js
│   │   │   │   │   │   │   │   ├── ends-with.js
│   │   │   │   │   │   │   │   ├── escape-html.js
│   │   │   │   │   │   │   │   ├── fixed.js
│   │   │   │   │   │   │   │   ├── fontcolor.js
│   │   │   │   │   │   │   │   ├── fontsize.js
│   │   │   │   │   │   │   │   ├── includes.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── italics.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── link.js
│   │   │   │   │   │   │   │   ├── match-all.js
│   │   │   │   │   │   │   │   ├── pad-end.js
│   │   │   │   │   │   │   │   ├── pad-start.js
│   │   │   │   │   │   │   │   ├── repeat.js
│   │   │   │   │   │   │   │   ├── small.js
│   │   │   │   │   │   │   │   ├── starts-with.js
│   │   │   │   │   │   │   │   ├── strike.js
│   │   │   │   │   │   │   │   ├── sub.js
│   │   │   │   │   │   │   │   ├── sup.js
│   │   │   │   │   │   │   │   ├── trim-end.js
│   │   │   │   │   │   │   │   ├── trim.js
│   │   │   │   │   │   │   │   ├── trim-left.js
│   │   │   │   │   │   │   │   ├── trim-right.js
│   │   │   │   │   │   │   │   ├── trim-start.js
│   │   │   │   │   │   │   │   └── unescape-html.js
│   │   │   │   │   │   │   ├── symbol
│   │   │   │   │   │   │   │   ├── async-iterator.js
│   │   │   │   │   │   │   │   ├── for.js
│   │   │   │   │   │   │   │   ├── has-instance.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── is-concat-spreadable.js
│   │   │   │   │   │   │   │   ├── iterator.js
│   │   │   │   │   │   │   │   ├── key-for.js
│   │   │   │   │   │   │   │   ├── match.js
│   │   │   │   │   │   │   │   ├── observable.js
│   │   │   │   │   │   │   │   ├── replace.js
│   │   │   │   │   │   │   │   ├── search.js
│   │   │   │   │   │   │   │   ├── species.js
│   │   │   │   │   │   │   │   ├── split.js
│   │   │   │   │   │   │   │   ├── to-primitive.js
│   │   │   │   │   │   │   │   ├── to-string-tag.js
│   │   │   │   │   │   │   │   └── unscopables.js
│   │   │   │   │   │   │   ├── system
│   │   │   │   │   │   │   │   ├── global.js
│   │   │   │   │   │   │   │   └── index.js
│   │   │   │   │   │   │   ├── typed
│   │   │   │   │   │   │   │   ├── array-buffer.js
│   │   │   │   │   │   │   │   ├── data-view.js
│   │   │   │   │   │   │   │   ├── float32-array.js
│   │   │   │   │   │   │   │   ├── float64-array.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   ├── int16-array.js
│   │   │   │   │   │   │   │   ├── int32-array.js
│   │   │   │   │   │   │   │   ├── int8-array.js
│   │   │   │   │   │   │   │   ├── uint16-array.js
│   │   │   │   │   │   │   │   ├── uint32-array.js
│   │   │   │   │   │   │   │   ├── uint8-array.js
│   │   │   │   │   │   │   │   └── uint8-clamped-array.js
│   │   │   │   │   │   │   ├── weak-map
│   │   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   │   ├── weak-map.js
│   │   │   │   │   │   │   ├── weak-set
│   │   │   │   │   │   │   │   ├── from.js
│   │   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   │   └── of.js
│   │   │   │   │   │   │   └── weak-set.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── modules
│   │   │   │   │   │   │   ├── _add-to-unscopables.js
│   │   │   │   │   │   │   ├── _a-function.js
│   │   │   │   │   │   │   ├── _an-instance.js
│   │   │   │   │   │   │   ├── _an-object.js
│   │   │   │   │   │   │   ├── _a-number-value.js
│   │   │   │   │   │   │   ├── _array-copy-within.js
│   │   │   │   │   │   │   ├── _array-fill.js
│   │   │   │   │   │   │   ├── _array-from-iterable.js
│   │   │   │   │   │   │   ├── _array-includes.js
│   │   │   │   │   │   │   ├── _array-methods.js
│   │   │   │   │   │   │   ├── _array-reduce.js
│   │   │   │   │   │   │   ├── _array-species-constructor.js
│   │   │   │   │   │   │   ├── _array-species-create.js
│   │   │   │   │   │   │   ├── _bind.js
│   │   │   │   │   │   │   ├── _classof.js
│   │   │   │   │   │   │   ├── _cof.js
│   │   │   │   │   │   │   ├── _collection.js
│   │   │   │   │   │   │   ├── _collection-strong.js
│   │   │   │   │   │   │   ├── _collection-to-json.js
│   │   │   │   │   │   │   ├── _collection-weak.js
│   │   │   │   │   │   │   ├── core.delay.js
│   │   │   │   │   │   │   ├── core.dict.js
│   │   │   │   │   │   │   ├── core.function.part.js
│   │   │   │   │   │   │   ├── core.get-iterator.js
│   │   │   │   │   │   │   ├── core.get-iterator-method.js
│   │   │   │   │   │   │   ├── core.is-iterable.js
│   │   │   │   │   │   │   ├── _core.js
│   │   │   │   │   │   │   ├── core.number.iterator.js
│   │   │   │   │   │   │   ├── core.object.classof.js
│   │   │   │   │   │   │   ├── core.object.define.js
│   │   │   │   │   │   │   ├── core.object.is-object.js
│   │   │   │   │   │   │   ├── core.object.make.js
│   │   │   │   │   │   │   ├── core.regexp.escape.js
│   │   │   │   │   │   │   ├── core.string.escape-html.js
│   │   │   │   │   │   │   ├── core.string.unescape-html.js
│   │   │   │   │   │   │   ├── _create-property.js
│   │   │   │   │   │   │   ├── _ctx.js
│   │   │   │   │   │   │   ├── _date-to-iso-string.js
│   │   │   │   │   │   │   ├── _date-to-primitive.js
│   │   │   │   │   │   │   ├── _defined.js
│   │   │   │   │   │   │   ├── _descriptors.js
│   │   │   │   │   │   │   ├── _dom-create.js
│   │   │   │   │   │   │   ├── _entry-virtual.js
│   │   │   │   │   │   │   ├── _enum-bug-keys.js
│   │   │   │   │   │   │   ├── _enum-keys.js
│   │   │   │   │   │   │   ├── es5.js
│   │   │   │   │   │   │   ├── es6.array.copy-within.js
│   │   │   │   │   │   │   ├── es6.array.every.js
│   │   │   │   │   │   │   ├── es6.array.fill.js
│   │   │   │   │   │   │   ├── es6.array.filter.js
│   │   │   │   │   │   │   ├── es6.array.find-index.js
│   │   │   │   │   │   │   ├── es6.array.find.js
│   │   │   │   │   │   │   ├── es6.array.for-each.js
│   │   │   │   │   │   │   ├── es6.array.from.js
│   │   │   │   │   │   │   ├── es6.array.index-of.js
│   │   │   │   │   │   │   ├── es6.array.is-array.js
│   │   │   │   │   │   │   ├── es6.array.iterator.js
│   │   │   │   │   │   │   ├── es6.array.join.js
│   │   │   │   │   │   │   ├── es6.array.last-index-of.js
│   │   │   │   │   │   │   ├── es6.array.map.js
│   │   │   │   │   │   │   ├── es6.array.of.js
│   │   │   │   │   │   │   ├── es6.array.reduce.js
│   │   │   │   │   │   │   ├── es6.array.reduce-right.js
│   │   │   │   │   │   │   ├── es6.array.slice.js
│   │   │   │   │   │   │   ├── es6.array.some.js
│   │   │   │   │   │   │   ├── es6.array.sort.js
│   │   │   │   │   │   │   ├── es6.array.species.js
│   │   │   │   │   │   │   ├── es6.date.now.js
│   │   │   │   │   │   │   ├── es6.date.to-iso-string.js
│   │   │   │   │   │   │   ├── es6.date.to-json.js
│   │   │   │   │   │   │   ├── es6.date.to-primitive.js
│   │   │   │   │   │   │   ├── es6.date.to-string.js
│   │   │   │   │   │   │   ├── es6.function.bind.js
│   │   │   │   │   │   │   ├── es6.function.has-instance.js
│   │   │   │   │   │   │   ├── es6.function.name.js
│   │   │   │   │   │   │   ├── es6.map.js
│   │   │   │   │   │   │   ├── es6.math.acosh.js
│   │   │   │   │   │   │   ├── es6.math.asinh.js
│   │   │   │   │   │   │   ├── es6.math.atanh.js
│   │   │   │   │   │   │   ├── es6.math.cbrt.js
│   │   │   │   │   │   │   ├── es6.math.clz32.js
│   │   │   │   │   │   │   ├── es6.math.cosh.js
│   │   │   │   │   │   │   ├── es6.math.expm1.js
│   │   │   │   │   │   │   ├── es6.math.fround.js
│   │   │   │   │   │   │   ├── es6.math.hypot.js
│   │   │   │   │   │   │   ├── es6.math.imul.js
│   │   │   │   │   │   │   ├── es6.math.log10.js
│   │   │   │   │   │   │   ├── es6.math.log1p.js
│   │   │   │   │   │   │   ├── es6.math.log2.js
│   │   │   │   │   │   │   ├── es6.math.sign.js
│   │   │   │   │   │   │   ├── es6.math.sinh.js
│   │   │   │   │   │   │   ├── es6.math.tanh.js
│   │   │   │   │   │   │   ├── es6.math.trunc.js
│   │   │   │   │   │   │   ├── es6.number.constructor.js
│   │   │   │   │   │   │   ├── es6.number.epsilon.js
│   │   │   │   │   │   │   ├── es6.number.is-finite.js
│   │   │   │   │   │   │   ├── es6.number.is-integer.js
│   │   │   │   │   │   │   ├── es6.number.is-nan.js
│   │   │   │   │   │   │   ├── es6.number.is-safe-integer.js
│   │   │   │   │   │   │   ├── es6.number.max-safe-integer.js
│   │   │   │   │   │   │   ├── es6.number.min-safe-integer.js
│   │   │   │   │   │   │   ├── es6.number.parse-float.js
│   │   │   │   │   │   │   ├── es6.number.parse-int.js
│   │   │   │   │   │   │   ├── es6.number.to-fixed.js
│   │   │   │   │   │   │   ├── es6.number.to-precision.js
│   │   │   │   │   │   │   ├── es6.object.assign.js
│   │   │   │   │   │   │   ├── es6.object.create.js
│   │   │   │   │   │   │   ├── es6.object.define-properties.js
│   │   │   │   │   │   │   ├── es6.object.define-property.js
│   │   │   │   │   │   │   ├── es6.object.freeze.js
│   │   │   │   │   │   │   ├── es6.object.get-own-property-descriptor.js
│   │   │   │   │   │   │   ├── es6.object.get-own-property-names.js
│   │   │   │   │   │   │   ├── es6.object.get-prototype-of.js
│   │   │   │   │   │   │   ├── es6.object.is-extensible.js
│   │   │   │   │   │   │   ├── es6.object.is-frozen.js
│   │   │   │   │   │   │   ├── es6.object.is.js
│   │   │   │   │   │   │   ├── es6.object.is-sealed.js
│   │   │   │   │   │   │   ├── es6.object.keys.js
│   │   │   │   │   │   │   ├── es6.object.prevent-extensions.js
│   │   │   │   │   │   │   ├── es6.object.seal.js
│   │   │   │   │   │   │   ├── es6.object.set-prototype-of.js
│   │   │   │   │   │   │   ├── es6.object.to-string.js
│   │   │   │   │   │   │   ├── es6.parse-float.js
│   │   │   │   │   │   │   ├── es6.parse-int.js
│   │   │   │   │   │   │   ├── es6.promise.js
│   │   │   │   │   │   │   ├── es6.reflect.apply.js
│   │   │   │   │   │   │   ├── es6.reflect.construct.js
│   │   │   │   │   │   │   ├── es6.reflect.define-property.js
│   │   │   │   │   │   │   ├── es6.reflect.delete-property.js
│   │   │   │   │   │   │   ├── es6.reflect.enumerate.js
│   │   │   │   │   │   │   ├── es6.reflect.get.js
│   │   │   │   │   │   │   ├── es6.reflect.get-own-property-descriptor.js
│   │   │   │   │   │   │   ├── es6.reflect.get-prototype-of.js
│   │   │   │   │   │   │   ├── es6.reflect.has.js
│   │   │   │   │   │   │   ├── es6.reflect.is-extensible.js
│   │   │   │   │   │   │   ├── es6.reflect.own-keys.js
│   │   │   │   │   │   │   ├── es6.reflect.prevent-extensions.js
│   │   │   │   │   │   │   ├── es6.reflect.set.js
│   │   │   │   │   │   │   ├── es6.reflect.set-prototype-of.js
│   │   │   │   │   │   │   ├── es6.regexp.constructor.js
│   │   │   │   │   │   │   ├── es6.regexp.flags.js
│   │   │   │   │   │   │   ├── es6.regexp.match.js
│   │   │   │   │   │   │   ├── es6.regexp.replace.js
│   │   │   │   │   │   │   ├── es6.regexp.search.js
│   │   │   │   │   │   │   ├── es6.regexp.split.js
│   │   │   │   │   │   │   ├── es6.regexp.to-string.js
│   │   │   │   │   │   │   ├── es6.set.js
│   │   │   │   │   │   │   ├── es6.string.anchor.js
│   │   │   │   │   │   │   ├── es6.string.big.js
│   │   │   │   │   │   │   ├── es6.string.blink.js
│   │   │   │   │   │   │   ├── es6.string.bold.js
│   │   │   │   │   │   │   ├── es6.string.code-point-at.js
│   │   │   │   │   │   │   ├── es6.string.ends-with.js
│   │   │   │   │   │   │   ├── es6.string.fixed.js
│   │   │   │   │   │   │   ├── es6.string.fontcolor.js
│   │   │   │   │   │   │   ├── es6.string.fontsize.js
│   │   │   │   │   │   │   ├── es6.string.from-code-point.js
│   │   │   │   │   │   │   ├── es6.string.includes.js
│   │   │   │   │   │   │   ├── es6.string.italics.js
│   │   │   │   │   │   │   ├── es6.string.iterator.js
│   │   │   │   │   │   │   ├── es6.string.link.js
│   │   │   │   │   │   │   ├── es6.string.raw.js
│   │   │   │   │   │   │   ├── es6.string.repeat.js
│   │   │   │   │   │   │   ├── es6.string.small.js
│   │   │   │   │   │   │   ├── es6.string.starts-with.js
│   │   │   │   │   │   │   ├── es6.string.strike.js
│   │   │   │   │   │   │   ├── es6.string.sub.js
│   │   │   │   │   │   │   ├── es6.string.sup.js
│   │   │   │   │   │   │   ├── es6.string.trim.js
│   │   │   │   │   │   │   ├── es6.symbol.js
│   │   │   │   │   │   │   ├── es6.typed.array-buffer.js
│   │   │   │   │   │   │   ├── es6.typed.data-view.js
│   │   │   │   │   │   │   ├── es6.typed.float32-array.js
│   │   │   │   │   │   │   ├── es6.typed.float64-array.js
│   │   │   │   │   │   │   ├── es6.typed.int16-array.js
│   │   │   │   │   │   │   ├── es6.typed.int32-array.js
│   │   │   │   │   │   │   ├── es6.typed.int8-array.js
│   │   │   │   │   │   │   ├── es6.typed.uint16-array.js
│   │   │   │   │   │   │   ├── es6.typed.uint32-array.js
│   │   │   │   │   │   │   ├── es6.typed.uint8-array.js
│   │   │   │   │   │   │   ├── es6.typed.uint8-clamped-array.js
│   │   │   │   │   │   │   ├── es6.weak-map.js
│   │   │   │   │   │   │   ├── es6.weak-set.js
│   │   │   │   │   │   │   ├── es7.array.flat-map.js
│   │   │   │   │   │   │   ├── es7.array.flatten.js
│   │   │   │   │   │   │   ├── es7.array.includes.js
│   │   │   │   │   │   │   ├── es7.asap.js
│   │   │   │   │   │   │   ├── es7.error.is-error.js
│   │   │   │   │   │   │   ├── es7.global.js
│   │   │   │   │   │   │   ├── es7.map.from.js
│   │   │   │   │   │   │   ├── es7.map.of.js
│   │   │   │   │   │   │   ├── es7.map.to-json.js
│   │   │   │   │   │   │   ├── es7.math.clamp.js
│   │   │   │   │   │   │   ├── es7.math.deg-per-rad.js
│   │   │   │   │   │   │   ├── es7.math.degrees.js
│   │   │   │   │   │   │   ├── es7.math.fscale.js
│   │   │   │   │   │   │   ├── es7.math.iaddh.js
│   │   │   │   │   │   │   ├── es7.math.imulh.js
│   │   │   │   │   │   │   ├── es7.math.isubh.js
│   │   │   │   │   │   │   ├── es7.math.radians.js
│   │   │   │   │   │   │   ├── es7.math.rad-per-deg.js
│   │   │   │   │   │   │   ├── es7.math.scale.js
│   │   │   │   │   │   │   ├── es7.math.signbit.js
│   │   │   │   │   │   │   ├── es7.math.umulh.js
│   │   │   │   │   │   │   ├── es7.object.define-getter.js
│   │   │   │   │   │   │   ├── es7.object.define-setter.js
│   │   │   │   │   │   │   ├── es7.object.entries.js
│   │   │   │   │   │   │   ├── es7.object.get-own-property-descriptors.js
│   │   │   │   │   │   │   ├── es7.object.lookup-getter.js
│   │   │   │   │   │   │   ├── es7.object.lookup-setter.js
│   │   │   │   │   │   │   ├── es7.object.values.js
│   │   │   │   │   │   │   ├── es7.observable.js
│   │   │   │   │   │   │   ├── es7.promise.finally.js
│   │   │   │   │   │   │   ├── es7.promise.try.js
│   │   │   │   │   │   │   ├── es7.reflect.define-metadata.js
│   │   │   │   │   │   │   ├── es7.reflect.delete-metadata.js
│   │   │   │   │   │   │   ├── es7.reflect.get-metadata.js
│   │   │   │   │   │   │   ├── es7.reflect.get-metadata-keys.js
│   │   │   │   │   │   │   ├── es7.reflect.get-own-metadata.js
│   │   │   │   │   │   │   ├── es7.reflect.get-own-metadata-keys.js
│   │   │   │   │   │   │   ├── es7.reflect.has-metadata.js
│   │   │   │   │   │   │   ├── es7.reflect.has-own-metadata.js
│   │   │   │   │   │   │   ├── es7.reflect.metadata.js
│   │   │   │   │   │   │   ├── es7.set.from.js
│   │   │   │   │   │   │   ├── es7.set.of.js
│   │   │   │   │   │   │   ├── es7.set.to-json.js
│   │   │   │   │   │   │   ├── es7.string.at.js
│   │   │   │   │   │   │   ├── es7.string.match-all.js
│   │   │   │   │   │   │   ├── es7.string.pad-end.js
│   │   │   │   │   │   │   ├── es7.string.pad-start.js
│   │   │   │   │   │   │   ├── es7.string.trim-left.js
│   │   │   │   │   │   │   ├── es7.string.trim-right.js
│   │   │   │   │   │   │   ├── es7.symbol.async-iterator.js
│   │   │   │   │   │   │   ├── es7.symbol.observable.js
│   │   │   │   │   │   │   ├── es7.system.global.js
│   │   │   │   │   │   │   ├── es7.weak-map.from.js
│   │   │   │   │   │   │   ├── es7.weak-map.of.js
│   │   │   │   │   │   │   ├── es7.weak-set.from.js
│   │   │   │   │   │   │   ├── es7.weak-set.of.js
│   │   │   │   │   │   │   ├── _export.js
│   │   │   │   │   │   │   ├── _fails-is-regexp.js
│   │   │   │   │   │   │   ├── _fails.js
│   │   │   │   │   │   │   ├── _fix-re-wks.js
│   │   │   │   │   │   │   ├── _flags.js
│   │   │   │   │   │   │   ├── _flatten-into-array.js
│   │   │   │   │   │   │   ├── _for-of.js
│   │   │   │   │   │   │   ├── _global.js
│   │   │   │   │   │   │   ├── _has.js
│   │   │   │   │   │   │   ├── _hide.js
│   │   │   │   │   │   │   ├── _html.js
│   │   │   │   │   │   │   ├── _ie8-dom-define.js
│   │   │   │   │   │   │   ├── _inherit-if-required.js
│   │   │   │   │   │   │   ├── _invoke.js
│   │   │   │   │   │   │   ├── _iobject.js
│   │   │   │   │   │   │   ├── _is-array-iter.js
│   │   │   │   │   │   │   ├── _is-array.js
│   │   │   │   │   │   │   ├── _is-integer.js
│   │   │   │   │   │   │   ├── _is-object.js
│   │   │   │   │   │   │   ├── _is-regexp.js
│   │   │   │   │   │   │   ├── _iterators.js
│   │   │   │   │   │   │   ├── _iter-call.js
│   │   │   │   │   │   │   ├── _iter-create.js
│   │   │   │   │   │   │   ├── _iter-define.js
│   │   │   │   │   │   │   ├── _iter-detect.js
│   │   │   │   │   │   │   ├── _iter-step.js
│   │   │   │   │   │   │   ├── _keyof.js
│   │   │   │   │   │   │   ├── _library.js
│   │   │   │   │   │   │   ├── _math-expm1.js
│   │   │   │   │   │   │   ├── _math-fround.js
│   │   │   │   │   │   │   ├── _math-log1p.js
│   │   │   │   │   │   │   ├── _math-scale.js
│   │   │   │   │   │   │   ├── _math-sign.js
│   │   │   │   │   │   │   ├── _metadata.js
│   │   │   │   │   │   │   ├── _meta.js
│   │   │   │   │   │   │   ├── _microtask.js
│   │   │   │   │   │   │   ├── _new-promise-capability.js
│   │   │   │   │   │   │   ├── _object-assign.js
│   │   │   │   │   │   │   ├── _object-create.js
│   │   │   │   │   │   │   ├── _object-define.js
│   │   │   │   │   │   │   ├── _object-dp.js
│   │   │   │   │   │   │   ├── _object-dps.js
│   │   │   │   │   │   │   ├── _object-forced-pam.js
│   │   │   │   │   │   │   ├── _object-gopd.js
│   │   │   │   │   │   │   ├── _object-gopn-ext.js
│   │   │   │   │   │   │   ├── _object-gopn.js
│   │   │   │   │   │   │   ├── _object-gops.js
│   │   │   │   │   │   │   ├── _object-gpo.js
│   │   │   │   │   │   │   ├── _object-keys-internal.js
│   │   │   │   │   │   │   ├── _object-keys.js
│   │   │   │   │   │   │   ├── _object-pie.js
│   │   │   │   │   │   │   ├── _object-sap.js
│   │   │   │   │   │   │   ├── _object-to-array.js
│   │   │   │   │   │   │   ├── _own-keys.js
│   │   │   │   │   │   │   ├── _parse-float.js
│   │   │   │   │   │   │   ├── _parse-int.js
│   │   │   │   │   │   │   ├── _partial.js
│   │   │   │   │   │   │   ├── _path.js
│   │   │   │   │   │   │   ├── _perform.js
│   │   │   │   │   │   │   ├── _promise-resolve.js
│   │   │   │   │   │   │   ├── _property-desc.js
│   │   │   │   │   │   │   ├── _redefine-all.js
│   │   │   │   │   │   │   ├── _redefine.js
│   │   │   │   │   │   │   ├── _replacer.js
│   │   │   │   │   │   │   ├── _same-value.js
│   │   │   │   │   │   │   ├── _set-collection-from.js
│   │   │   │   │   │   │   ├── _set-collection-of.js
│   │   │   │   │   │   │   ├── _set-proto.js
│   │   │   │   │   │   │   ├── _set-species.js
│   │   │   │   │   │   │   ├── _set-to-string-tag.js
│   │   │   │   │   │   │   ├── _shared.js
│   │   │   │   │   │   │   ├── _shared-key.js
│   │   │   │   │   │   │   ├── _species-constructor.js
│   │   │   │   │   │   │   ├── _strict-method.js
│   │   │   │   │   │   │   ├── _string-at.js
│   │   │   │   │   │   │   ├── _string-context.js
│   │   │   │   │   │   │   ├── _string-html.js
│   │   │   │   │   │   │   ├── _string-pad.js
│   │   │   │   │   │   │   ├── _string-repeat.js
│   │   │   │   │   │   │   ├── _string-trim.js
│   │   │   │   │   │   │   ├── _string-ws.js
│   │   │   │   │   │   │   ├── _task.js
│   │   │   │   │   │   │   ├── _to-absolute-index.js
│   │   │   │   │   │   │   ├── _to-index.js
│   │   │   │   │   │   │   ├── _to-integer.js
│   │   │   │   │   │   │   ├── _to-iobject.js
│   │   │   │   │   │   │   ├── _to-length.js
│   │   │   │   │   │   │   ├── _to-object.js
│   │   │   │   │   │   │   ├── _to-primitive.js
│   │   │   │   │   │   │   ├── _typed-array.js
│   │   │   │   │   │   │   ├── _typed-buffer.js
│   │   │   │   │   │   │   ├── _typed.js
│   │   │   │   │   │   │   ├── _uid.js
│   │   │   │   │   │   │   ├── _validate-collection.js
│   │   │   │   │   │   │   ├── web.dom.iterable.js
│   │   │   │   │   │   │   ├── web.immediate.js
│   │   │   │   │   │   │   ├── web.timers.js
│   │   │   │   │   │   │   ├── _wks-define.js
│   │   │   │   │   │   │   ├── _wks-ext.js
│   │   │   │   │   │   │   └── _wks.js
│   │   │   │   │   │   ├── shim.js
│   │   │   │   │   │   ├── stage
│   │   │   │   │   │   │   ├── 0.js
│   │   │   │   │   │   │   ├── 1.js
│   │   │   │   │   │   │   ├── 2.js
│   │   │   │   │   │   │   ├── 3.js
│   │   │   │   │   │   │   ├── 4.js
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── pre.js
│   │   │   │   │   │   └── web
│   │   │   │   │   │   ├── dom-collections.js
│   │   │   │   │   │   ├── immediate.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   └── timers.js
│   │   │   │   │   ├── LICENSE
│   │   │   │   │   ├── modules
│   │   │   │   │   │   ├── _add-to-unscopables.js
│   │   │   │   │   │   ├── _a-function.js
│   │   │   │   │   │   ├── _an-instance.js
│   │   │   │   │   │   ├── _an-object.js
│   │   │   │   │   │   ├── _a-number-value.js
│   │   │   │   │   │   ├── _array-copy-within.js
│   │   │   │   │   │   ├── _array-fill.js
│   │   │   │   │   │   ├── _array-from-iterable.js
│   │   │   │   │   │   ├── _array-includes.js
│   │   │   │   │   │   ├── _array-methods.js
│   │   │   │   │   │   ├── _array-reduce.js
│   │   │   │   │   │   ├── _array-species-constructor.js
│   │   │   │   │   │   ├── _array-species-create.js
│   │   │   │   │   │   ├── _bind.js
│   │   │   │   │   │   ├── _classof.js
│   │   │   │   │   │   ├── _cof.js
│   │   │   │   │   │   ├── _collection.js
│   │   │   │   │   │   ├── _collection-strong.js
│   │   │   │   │   │   ├── _collection-to-json.js
│   │   │   │   │   │   ├── _collection-weak.js
│   │   │   │   │   │   ├── core.delay.js
│   │   │   │   │   │   ├── core.dict.js
│   │   │   │   │   │   ├── core.function.part.js
│   │   │   │   │   │   ├── core.get-iterator.js
│   │   │   │   │   │   ├── core.get-iterator-method.js
│   │   │   │   │   │   ├── core.is-iterable.js
│   │   │   │   │   │   ├── _core.js
│   │   │   │   │   │   ├── core.number.iterator.js
│   │   │   │   │   │   ├── core.object.classof.js
│   │   │   │   │   │   ├── core.object.define.js
│   │   │   │   │   │   ├── core.object.is-object.js
│   │   │   │   │   │   ├── core.object.make.js
│   │   │   │   │   │   ├── core.regexp.escape.js
│   │   │   │   │   │   ├── core.string.escape-html.js
│   │   │   │   │   │   ├── core.string.unescape-html.js
│   │   │   │   │   │   ├── _create-property.js
│   │   │   │   │   │   ├── _ctx.js
│   │   │   │   │   │   ├── _date-to-iso-string.js
│   │   │   │   │   │   ├── _date-to-primitive.js
│   │   │   │   │   │   ├── _defined.js
│   │   │   │   │   │   ├── _descriptors.js
│   │   │   │   │   │   ├── _dom-create.js
│   │   │   │   │   │   ├── _entry-virtual.js
│   │   │   │   │   │   ├── _enum-bug-keys.js
│   │   │   │   │   │   ├── _enum-keys.js
│   │   │   │   │   │   ├── es5.js
│   │   │   │   │   │   ├── es6.array.copy-within.js
│   │   │   │   │   │   ├── es6.array.every.js
│   │   │   │   │   │   ├── es6.array.fill.js
│   │   │   │   │   │   ├── es6.array.filter.js
│   │   │   │   │   │   ├── es6.array.find-index.js
│   │   │   │   │   │   ├── es6.array.find.js
│   │   │   │   │   │   ├── es6.array.for-each.js
│   │   │   │   │   │   ├── es6.array.from.js
│   │   │   │   │   │   ├── es6.array.index-of.js
│   │   │   │   │   │   ├── es6.array.is-array.js
│   │   │   │   │   │   ├── es6.array.iterator.js
│   │   │   │   │   │   ├── es6.array.join.js
│   │   │   │   │   │   ├── es6.array.last-index-of.js
│   │   │   │   │   │   ├── es6.array.map.js
│   │   │   │   │   │   ├── es6.array.of.js
│   │   │   │   │   │   ├── es6.array.reduce.js
│   │   │   │   │   │   ├── es6.array.reduce-right.js
│   │   │   │   │   │   ├── es6.array.slice.js
│   │   │   │   │   │   ├── es6.array.some.js
│   │   │   │   │   │   ├── es6.array.sort.js
│   │   │   │   │   │   ├── es6.array.species.js
│   │   │   │   │   │   ├── es6.date.now.js
│   │   │   │   │   │   ├── es6.date.to-iso-string.js
│   │   │   │   │   │   ├── es6.date.to-json.js
│   │   │   │   │   │   ├── es6.date.to-primitive.js
│   │   │   │   │   │   ├── es6.date.to-string.js
│   │   │   │   │   │   ├── es6.function.bind.js
│   │   │   │   │   │   ├── es6.function.has-instance.js
│   │   │   │   │   │   ├── es6.function.name.js
│   │   │   │   │   │   ├── es6.map.js
│   │   │   │   │   │   ├── es6.math.acosh.js
│   │   │   │   │   │   ├── es6.math.asinh.js
│   │   │   │   │   │   ├── es6.math.atanh.js
│   │   │   │   │   │   ├── es6.math.cbrt.js
│   │   │   │   │   │   ├── es6.math.clz32.js
│   │   │   │   │   │   ├── es6.math.cosh.js
│   │   │   │   │   │   ├── es6.math.expm1.js
│   │   │   │   │   │   ├── es6.math.fround.js
│   │   │   │   │   │   ├── es6.math.hypot.js
│   │   │   │   │   │   ├── es6.math.imul.js
│   │   │   │   │   │   ├── es6.math.log10.js
│   │   │   │   │   │   ├── es6.math.log1p.js
│   │   │   │   │   │   ├── es6.math.log2.js
│   │   │   │   │   │   ├── es6.math.sign.js
│   │   │   │   │   │   ├── es6.math.sinh.js
│   │   │   │   │   │   ├── es6.math.tanh.js
│   │   │   │   │   │   ├── es6.math.trunc.js
│   │   │   │   │   │   ├── es6.number.constructor.js
│   │   │   │   │   │   ├── es6.number.epsilon.js
│   │   │   │   │   │   ├── es6.number.is-finite.js
│   │   │   │   │   │   ├── es6.number.is-integer.js
│   │   │   │   │   │   ├── es6.number.is-nan.js
│   │   │   │   │   │   ├── es6.number.is-safe-integer.js
│   │   │   │   │   │   ├── es6.number.max-safe-integer.js
│   │   │   │   │   │   ├── es6.number.min-safe-integer.js
│   │   │   │   │   │   ├── es6.number.parse-float.js
│   │   │   │   │   │   ├── es6.number.parse-int.js
│   │   │   │   │   │   ├── es6.number.to-fixed.js
│   │   │   │   │   │   ├── es6.number.to-precision.js
│   │   │   │   │   │   ├── es6.object.assign.js
│   │   │   │   │   │   ├── es6.object.create.js
│   │   │   │   │   │   ├── es6.object.define-properties.js
│   │   │   │   │   │   ├── es6.object.define-property.js
│   │   │   │   │   │   ├── es6.object.freeze.js
│   │   │   │   │   │   ├── es6.object.get-own-property-descriptor.js
│   │   │   │   │   │   ├── es6.object.get-own-property-names.js
│   │   │   │   │   │   ├── es6.object.get-prototype-of.js
│   │   │   │   │   │   ├── es6.object.is-extensible.js
│   │   │   │   │   │   ├── es6.object.is-frozen.js
│   │   │   │   │   │   ├── es6.object.is.js
│   │   │   │   │   │   ├── es6.object.is-sealed.js
│   │   │   │   │   │   ├── es6.object.keys.js
│   │   │   │   │   │   ├── es6.object.prevent-extensions.js
│   │   │   │   │   │   ├── es6.object.seal.js
│   │   │   │   │   │   ├── es6.object.set-prototype-of.js
│   │   │   │   │   │   ├── es6.object.to-string.js
│   │   │   │   │   │   ├── es6.parse-float.js
│   │   │   │   │   │   ├── es6.parse-int.js
│   │   │   │   │   │   ├── es6.promise.js
│   │   │   │   │   │   ├── es6.reflect.apply.js
│   │   │   │   │   │   ├── es6.reflect.construct.js
│   │   │   │   │   │   ├── es6.reflect.define-property.js
│   │   │   │   │   │   ├── es6.reflect.delete-property.js
│   │   │   │   │   │   ├── es6.reflect.enumerate.js
│   │   │   │   │   │   ├── es6.reflect.get.js
│   │   │   │   │   │   ├── es6.reflect.get-own-property-descriptor.js
│   │   │   │   │   │   ├── es6.reflect.get-prototype-of.js
│   │   │   │   │   │   ├── es6.reflect.has.js
│   │   │   │   │   │   ├── es6.reflect.is-extensible.js
│   │   │   │   │   │   ├── es6.reflect.own-keys.js
│   │   │   │   │   │   ├── es6.reflect.prevent-extensions.js
│   │   │   │   │   │   ├── es6.reflect.set.js
│   │   │   │   │   │   ├── es6.reflect.set-prototype-of.js
│   │   │   │   │   │   ├── es6.regexp.constructor.js
│   │   │   │   │   │   ├── es6.regexp.flags.js
│   │   │   │   │   │   ├── es6.regexp.match.js
│   │   │   │   │   │   ├── es6.regexp.replace.js
│   │   │   │   │   │   ├── es6.regexp.search.js
│   │   │   │   │   │   ├── es6.regexp.split.js
│   │   │   │   │   │   ├── es6.regexp.to-string.js
│   │   │   │   │   │   ├── es6.set.js
│   │   │   │   │   │   ├── es6.string.anchor.js
│   │   │   │   │   │   ├── es6.string.big.js
│   │   │   │   │   │   ├── es6.string.blink.js
│   │   │   │   │   │   ├── es6.string.bold.js
│   │   │   │   │   │   ├── es6.string.code-point-at.js
│   │   │   │   │   │   ├── es6.string.ends-with.js
│   │   │   │   │   │   ├── es6.string.fixed.js
│   │   │   │   │   │   ├── es6.string.fontcolor.js
│   │   │   │   │   │   ├── es6.string.fontsize.js
│   │   │   │   │   │   ├── es6.string.from-code-point.js
│   │   │   │   │   │   ├── es6.string.includes.js
│   │   │   │   │   │   ├── es6.string.italics.js
│   │   │   │   │   │   ├── es6.string.iterator.js
│   │   │   │   │   │   ├── es6.string.link.js
│   │   │   │   │   │   ├── es6.string.raw.js
│   │   │   │   │   │   ├── es6.string.repeat.js
│   │   │   │   │   │   ├── es6.string.small.js
│   │   │   │   │   │   ├── es6.string.starts-with.js
│   │   │   │   │   │   ├── es6.string.strike.js
│   │   │   │   │   │   ├── es6.string.sub.js
│   │   │   │   │   │   ├── es6.string.sup.js
│   │   │   │   │   │   ├── es6.string.trim.js
│   │   │   │   │   │   ├── es6.symbol.js
│   │   │   │   │   │   ├── es6.typed.array-buffer.js
│   │   │   │   │   │   ├── es6.typed.data-view.js
│   │   │   │   │   │   ├── es6.typed.float32-array.js
│   │   │   │   │   │   ├── es6.typed.float64-array.js
│   │   │   │   │   │   ├── es6.typed.int16-array.js
│   │   │   │   │   │   ├── es6.typed.int32-array.js
│   │   │   │   │   │   ├── es6.typed.int8-array.js
│   │   │   │   │   │   ├── es6.typed.uint16-array.js
│   │   │   │   │   │   ├── es6.typed.uint32-array.js
│   │   │   │   │   │   ├── es6.typed.uint8-array.js
│   │   │   │   │   │   ├── es6.typed.uint8-clamped-array.js
│   │   │   │   │   │   ├── es6.weak-map.js
│   │   │   │   │   │   ├── es6.weak-set.js
│   │   │   │   │   │   ├── es7.array.flat-map.js
│   │   │   │   │   │   ├── es7.array.flatten.js
│   │   │   │   │   │   ├── es7.array.includes.js
│   │   │   │   │   │   ├── es7.asap.js
│   │   │   │   │   │   ├── es7.error.is-error.js
│   │   │   │   │   │   ├── es7.global.js
│   │   │   │   │   │   ├── es7.map.from.js
│   │   │   │   │   │   ├── es7.map.of.js
│   │   │   │   │   │   ├── es7.map.to-json.js
│   │   │   │   │   │   ├── es7.math.clamp.js
│   │   │   │   │   │   ├── es7.math.deg-per-rad.js
│   │   │   │   │   │   ├── es7.math.degrees.js
│   │   │   │   │   │   ├── es7.math.fscale.js
│   │   │   │   │   │   ├── es7.math.iaddh.js
│   │   │   │   │   │   ├── es7.math.imulh.js
│   │   │   │   │   │   ├── es7.math.isubh.js
│   │   │   │   │   │   ├── es7.math.radians.js
│   │   │   │   │   │   ├── es7.math.rad-per-deg.js
│   │   │   │   │   │   ├── es7.math.scale.js
│   │   │   │   │   │   ├── es7.math.signbit.js
│   │   │   │   │   │   ├── es7.math.umulh.js
│   │   │   │   │   │   ├── es7.object.define-getter.js
│   │   │   │   │   │   ├── es7.object.define-setter.js
│   │   │   │   │   │   ├── es7.object.entries.js
│   │   │   │   │   │   ├── es7.object.get-own-property-descriptors.js
│   │   │   │   │   │   ├── es7.object.lookup-getter.js
│   │   │   │   │   │   ├── es7.object.lookup-setter.js
│   │   │   │   │   │   ├── es7.object.values.js
│   │   │   │   │   │   ├── es7.observable.js
│   │   │   │   │   │   ├── es7.promise.finally.js
│   │   │   │   │   │   ├── es7.promise.try.js
│   │   │   │   │   │   ├── es7.reflect.define-metadata.js
│   │   │   │   │   │   ├── es7.reflect.delete-metadata.js
│   │   │   │   │   │   ├── es7.reflect.get-metadata.js
│   │   │   │   │   │   ├── es7.reflect.get-metadata-keys.js
│   │   │   │   │   │   ├── es7.reflect.get-own-metadata.js
│   │   │   │   │   │   ├── es7.reflect.get-own-metadata-keys.js
│   │   │   │   │   │   ├── es7.reflect.has-metadata.js
│   │   │   │   │   │   ├── es7.reflect.has-own-metadata.js
│   │   │   │   │   │   ├── es7.reflect.metadata.js
│   │   │   │   │   │   ├── es7.set.from.js
│   │   │   │   │   │   ├── es7.set.of.js
│   │   │   │   │   │   ├── es7.set.to-json.js
│   │   │   │   │   │   ├── es7.string.at.js
│   │   │   │   │   │   ├── es7.string.match-all.js
│   │   │   │   │   │   ├── es7.string.pad-end.js
│   │   │   │   │   │   ├── es7.string.pad-start.js
│   │   │   │   │   │   ├── es7.string.trim-left.js
│   │   │   │   │   │   ├── es7.string.trim-right.js
│   │   │   │   │   │   ├── es7.symbol.async-iterator.js
│   │   │   │   │   │   ├── es7.symbol.observable.js
│   │   │   │   │   │   ├── es7.system.global.js
│   │   │   │   │   │   ├── es7.weak-map.from.js
│   │   │   │   │   │   ├── es7.weak-map.of.js
│   │   │   │   │   │   ├── es7.weak-set.from.js
│   │   │   │   │   │   ├── es7.weak-set.of.js
│   │   │   │   │   │   ├── _export.js
│   │   │   │   │   │   ├── _fails-is-regexp.js
│   │   │   │   │   │   ├── _fails.js
│   │   │   │   │   │   ├── _fix-re-wks.js
│   │   │   │   │   │   ├── _flags.js
│   │   │   │   │   │   ├── _flatten-into-array.js
│   │   │   │   │   │   ├── _for-of.js
│   │   │   │   │   │   ├── _global.js
│   │   │   │   │   │   ├── _has.js
│   │   │   │   │   │   ├── _hide.js
│   │   │   │   │   │   ├── _html.js
│   │   │   │   │   │   ├── _ie8-dom-define.js
│   │   │   │   │   │   ├── _inherit-if-required.js
│   │   │   │   │   │   ├── _invoke.js
│   │   │   │   │   │   ├── _iobject.js
│   │   │   │   │   │   ├── _is-array-iter.js
│   │   │   │   │   │   ├── _is-array.js
│   │   │   │   │   │   ├── _is-integer.js
│   │   │   │   │   │   ├── _is-object.js
│   │   │   │   │   │   ├── _is-regexp.js
│   │   │   │   │   │   ├── _iterators.js
│   │   │   │   │   │   ├── _iter-call.js
│   │   │   │   │   │   ├── _iter-create.js
│   │   │   │   │   │   ├── _iter-define.js
│   │   │   │   │   │   ├── _iter-detect.js
│   │   │   │   │   │   ├── _iter-step.js
│   │   │   │   │   │   ├── _keyof.js
│   │   │   │   │   │   ├── library
│   │   │   │   │   │   │   ├── _add-to-unscopables.js
│   │   │   │   │   │   │   ├── _collection.js
│   │   │   │   │   │   │   ├── es6.date.to-json.js
│   │   │   │   │   │   │   ├── es6.date.to-primitive.js
│   │   │   │   │   │   │   ├── es6.date.to-string.js
│   │   │   │   │   │   │   ├── es6.function.name.js
│   │   │   │   │   │   │   ├── es6.number.constructor.js
│   │   │   │   │   │   │   ├── es6.object.to-string.js
│   │   │   │   │   │   │   ├── es6.regexp.constructor.js
│   │   │   │   │   │   │   ├── es6.regexp.flags.js
│   │   │   │   │   │   │   ├── es6.regexp.match.js
│   │   │   │   │   │   │   ├── es6.regexp.replace.js
│   │   │   │   │   │   │   ├── es6.regexp.search.js
│   │   │   │   │   │   │   ├── es6.regexp.split.js
│   │   │   │   │   │   │   ├── es6.regexp.to-string.js
│   │   │   │   │   │   │   ├── _export.js
│   │   │   │   │   │   │   ├── _library.js
│   │   │   │   │   │   │   ├── _path.js
│   │   │   │   │   │   │   ├── _redefine-all.js
│   │   │   │   │   │   │   ├── _redefine.js
│   │   │   │   │   │   │   ├── _set-species.js
│   │   │   │   │   │   │   └── web.dom.iterable.js
│   │   │   │   │   │   ├── _library.js
│   │   │   │   │   │   ├── _math-expm1.js
│   │   │   │   │   │   ├── _math-fround.js
│   │   │   │   │   │   ├── _math-log1p.js
│   │   │   │   │   │   ├── _math-scale.js
│   │   │   │   │   │   ├── _math-sign.js
│   │   │   │   │   │   ├── _metadata.js
│   │   │   │   │   │   ├── _meta.js
│   │   │   │   │   │   ├── _microtask.js
│   │   │   │   │   │   ├── _new-promise-capability.js
│   │   │   │   │   │   ├── _object-assign.js
│   │   │   │   │   │   ├── _object-create.js
│   │   │   │   │   │   ├── _object-define.js
│   │   │   │   │   │   ├── _object-dp.js
│   │   │   │   │   │   ├── _object-dps.js
│   │   │   │   │   │   ├── _object-forced-pam.js
│   │   │   │   │   │   ├── _object-gopd.js
│   │   │   │   │   │   ├── _object-gopn-ext.js
│   │   │   │   │   │   ├── _object-gopn.js
│   │   │   │   │   │   ├── _object-gops.js
│   │   │   │   │   │   ├── _object-gpo.js
│   │   │   │   │   │   ├── _object-keys-internal.js
│   │   │   │   │   │   ├── _object-keys.js
│   │   │   │   │   │   ├── _object-pie.js
│   │   │   │   │   │   ├── _object-sap.js
│   │   │   │   │   │   ├── _object-to-array.js
│   │   │   │   │   │   ├── _own-keys.js
│   │   │   │   │   │   ├── _parse-float.js
│   │   │   │   │   │   ├── _parse-int.js
│   │   │   │   │   │   ├── _partial.js
│   │   │   │   │   │   ├── _path.js
│   │   │   │   │   │   ├── _perform.js
│   │   │   │   │   │   ├── _promise-resolve.js
│   │   │   │   │   │   ├── _property-desc.js
│   │   │   │   │   │   ├── _redefine-all.js
│   │   │   │   │   │   ├── _redefine.js
│   │   │   │   │   │   ├── _replacer.js
│   │   │   │   │   │   ├── _same-value.js
│   │   │   │   │   │   ├── _set-collection-from.js
│   │   │   │   │   │   ├── _set-collection-of.js
│   │   │   │   │   │   ├── _set-proto.js
│   │   │   │   │   │   ├── _set-species.js
│   │   │   │   │   │   ├── _set-to-string-tag.js
│   │   │   │   │   │   ├── _shared.js
│   │   │   │   │   │   ├── _shared-key.js
│   │   │   │   │   │   ├── _species-constructor.js
│   │   │   │   │   │   ├── _strict-method.js
│   │   │   │   │   │   ├── _string-at.js
│   │   │   │   │   │   ├── _string-context.js
│   │   │   │   │   │   ├── _string-html.js
│   │   │   │   │   │   ├── _string-pad.js
│   │   │   │   │   │   ├── _string-repeat.js
│   │   │   │   │   │   ├── _string-trim.js
│   │   │   │   │   │   ├── _string-ws.js
│   │   │   │   │   │   ├── _task.js
│   │   │   │   │   │   ├── _to-absolute-index.js
│   │   │   │   │   │   ├── _to-index.js
│   │   │   │   │   │   ├── _to-integer.js
│   │   │   │   │   │   ├── _to-iobject.js
│   │   │   │   │   │   ├── _to-length.js
│   │   │   │   │   │   ├── _to-object.js
│   │   │   │   │   │   ├── _to-primitive.js
│   │   │   │   │   │   ├── _typed-array.js
│   │   │   │   │   │   ├── _typed-buffer.js
│   │   │   │   │   │   ├── _typed.js
│   │   │   │   │   │   ├── _uid.js
│   │   │   │   │   │   ├── _validate-collection.js
│   │   │   │   │   │   ├── web.dom.iterable.js
│   │   │   │   │   │   ├── web.immediate.js
│   │   │   │   │   │   ├── web.timers.js
│   │   │   │   │   │   ├── _wks-define.js
│   │   │   │   │   │   ├── _wks-ext.js
│   │   │   │   │   │   └── _wks.js
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── README.md
│   │   │   │   │   ├── shim.js
│   │   │   │   │   ├── stage
│   │   │   │   │   │   ├── 0.js
│   │   │   │   │   │   ├── 1.js
│   │   │   │   │   │   ├── 2.js
│   │   │   │   │   │   ├── 3.js
│   │   │   │   │   │   ├── 4.js
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   └── pre.js
│   │   │   │   │   └── web
│   │   │   │   │   ├── dom-collections.js
│   │   │   │   │   ├── immediate.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── timers.js
│   │   │   │   └── regenerator-runtime
│   │   │   │   ├── package.json
│   │   │   │   ├── path.js
│   │   │   │   ├── README.md
│   │   │   │   ├── runtime.js
│   │   │   │   └── runtime-module.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   └── regenerator
│   │   │   └── index.js
│   │   ├── global
│   │   │   ├── console.js
│   │   │   ├── document.js
│   │   │   ├── LICENSE
│   │   │   ├── node_modules
│   │   │   │   ├── min-document
│   │   │   │   │   ├── CONTRIBUTION.md
│   │   │   │   │   ├── docs.mli
│   │   │   │   │   ├── document.js
│   │   │   │   │   ├── dom-comment.js
│   │   │   │   │   ├── dom-element.js
│   │   │   │   │   ├── dom-fragment.js
│   │   │   │   │   ├── dom-text.js
│   │   │   │   │   ├── event
│   │   │   │   │   │   ├── add-event-listener.js
│   │   │   │   │   │   ├── dispatch-event.js
│   │   │   │   │   │   └── remove-event-listener.js
│   │   │   │   │   ├── event.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── LICENCE
│   │   │   │   │   ├── node_modules
│   │   │   │   │   │   └── dom-walk
│   │   │   │   │   │   ├── example
│   │   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   │   └── static
│   │   │   │   │   │   │   ├── bundle.js
│   │   │   │   │   │   │   └── index.html
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── LICENCE
│   │   │   │   │   │   ├── Makefile
│   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   └── README.md
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── README.md
│   │   │   │   │   ├── serialize.js
│   │   │   │   │   └── test
│   │   │   │   │   ├── cleanup.js
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── static
│   │   │   │   │   │   ├── index.html
│   │   │   │   │   │   └── test-adapter.js
│   │   │   │   │   ├── test-document.js
│   │   │   │   │   ├── test-dom-comment.js
│   │   │   │   │   └── test-dom-element.js
│   │   │   │   └── process
│   │   │   │   ├── browser.js
│   │   │   │   ├── index.js
│   │   │   │   ├── LICENSE
│   │   │   │   ├── package.json
│   │   │   │   └── README.md
│   │   │   ├── package.json
│   │   │   ├── process.js
│   │   │   ├── README.md
│   │   │   └── window.js
│   │   ├── safe-json-parse
│   │   │   ├── callback.js
│   │   │   ├── examples
│   │   │   │   └── simple.js
│   │   │   ├── LICENCE
│   │   │   ├── node_modules
│   │   │   │   └── rust-result
│   │   │   │   ├── example.js
│   │   │   │   ├── index.js
│   │   │   │   ├── LICENSE
│   │   │   │   ├── node_modules
│   │   │   │   │   └── individual
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── LICENCE
│   │   │   │   │   ├── package.json
│   │   │   │   │   ├── README.md
│   │   │   │   │   └── test.js
│   │   │   │   ├── package.json
│   │   │   │   ├── README.md
│   │   │   │   └── test.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── result.js
│   │   │   ├── test
│   │   │   │   ├── index.js
│   │   │   │   └── static
│   │   │   │   ├── index.html
│   │   │   │   └── test-adapter.js
│   │   │   └── tuple.js
│   │   ├── tsml
│   │   │   ├── LICENSE.md
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── test.js
│   │   │   └── tsml.js
│   │   ├── videojs-font
│   │   │   ├── css
│   │   │   │   └── videojs-icons.css
│   │   │   ├── custom-icons
│   │   │   │   ├── audio-description.svg
│   │   │   │   └── fontawesome
│   │   │   │   ├── facebook.svg
│   │   │   │   ├── gplus.svg
│   │   │   │   ├── linkedin.svg
│   │   │   │   ├── pinterest.svg
│   │   │   │   ├── tumblr.svg
│   │   │   │   └── twitter.svg
│   │   │   ├── fonts
│   │   │   │   ├── VideoJS.eot
│   │   │   │   ├── VideoJS.svg
│   │   │   │   ├── VideoJS.ttf
│   │   │   │   └── VideoJS.woff
│   │   │   ├── Gruntfile.js
│   │   │   ├── icons.json
│   │   │   ├── index.html
│   │   │   ├── lib
│   │   │   │   └── grunt.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   ├── scss
│   │   │   │   ├── _icons.scss
│   │   │   │   └── videojs-icons.scss
│   │   │   └── templates
│   │   │   ├── html.hbs
│   │   │   └── scss.hbs
│   │   ├── videojs-ie8
│   │   │   ├── dist
│   │   │   │   ├── videojs-ie8.js
│   │   │   │   └── videojs-ie8.min.js
│   │   │   ├── Gruntfile.js
│   │   │   ├── grunt.js
│   │   │   ├── LICENSE
│   │   │   ├── node_modules
│   │   │   │   └── es5-shim
│   │   │   │   ├── bin.html
│   │   │   │   ├── bower.json
│   │   │   │   ├── CHANGES
│   │   │   │   ├── component.json
│   │   │   │   ├── CONTRIBUTORS.md
│   │   │   │   ├── es5-sham.js
│   │   │   │   ├── es5-sham.map
│   │   │   │   ├── es5-sham.min.js
│   │   │   │   ├── es5-shim.js
│   │   │   │   ├── es5-shim.map
│   │   │   │   ├── es5-shim.min.js
│   │   │   │   ├── LICENSE
│   │   │   │   ├── Makefile
│   │   │   │   ├── package.json
│   │   │   │   ├── README.md
│   │   │   │   ├── shims.json
│   │   │   │   └── tests
│   │   │   │   ├── helpers
│   │   │   │   │   └── h-matchers.js
│   │   │   │   ├── index.html
│   │   │   │   ├── index.min.html
│   │   │   │   ├── lib
│   │   │   │   │   ├── jasmine.css
│   │   │   │   │   ├── jasmine_favicon.png
│   │   │   │   │   ├── jasmine-html.js
│   │   │   │   │   └── jasmine.js
│   │   │   │   ├── native.html
│   │   │   │   └── spec
│   │   │   │   ├── helpers-jasmine.js
│   │   │   │   ├── s-array.js
│   │   │   │   ├── s-date.js
│   │   │   │   ├── s-error.js
│   │   │   │   ├── s-function.js
│   │   │   │   ├── s-global.js
│   │   │   │   ├── s-number.js
│   │   │   │   ├── s-object.js
│   │   │   │   ├── s-regexp.js
│   │   │   │   └── s-string.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   └── video-tag-shim.js
│   │   ├── videojs-vtt.js
│   │   │   ├── dist
│   │   │   │   ├── vtt.js
│   │   │   │   └── vtt.min.js
│   │   │   ├── lib
│   │   │   │   ├── browser-index.js
│   │   │   │   ├── browser.js
│   │   │   │   ├── index.js
│   │   │   │   ├── vttcue-extended.js
│   │   │   │   ├── vttcue.js
│   │   │   │   ├── vtt.js
│   │   │   │   ├── vttregion-extended.js
│   │   │   │   └── vttregion.js
│   │   │   ├── LICENSE
│   │   │   ├── package.json
│   │   │   └── README.md
│   │   └── xhr
│   │   ├── CONTRIBUTING.md
│   │   ├── index.js
│   │   ├── LICENCE
│   │   ├── node_modules
│   │   │   ├── is-function
│   │   │   │   ├── browser-test.js
│   │   │   │   ├── index.js
│   │   │   │   ├── LICENSE
│   │   │   │   ├── package.json
│   │   │   │   ├── README.md
│   │   │   │   ├── test.html
│   │   │   │   └── test.js
│   │   │   ├── parse-headers
│   │   │   │   ├── example.js
│   │   │   │   ├── LICENCE
│   │   │   │   ├── node_modules
│   │   │   │   │   ├── for-each
│   │   │   │   │   │   ├── index.js
│   │   │   │   │   │   ├── LICENCE
│   │   │   │   │   │   ├── package.json
│   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   └── test
│   │   │   │   │   │   └── test.js
│   │   │   │   │   └── trim
│   │   │   │   │   ├── component.json
│   │   │   │   │   ├── History.md
│   │   │   │   │   ├── index.js
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── package.json
│   │   │   │   │   └── Readme.md
│   │   │   │   ├── package.json
│   │   │   │   ├── parse-headers.js
│   │   │   │   ├── readme.md
│   │   │   │   └── test.js
│   │   │   └── xtend
│   │   │   ├── immutable.js
│   │   │   ├── LICENCE
│   │   │   ├── Makefile
│   │   │   ├── mutable.js
│   │   │   ├── package.json
│   │   │   ├── README.md
│   │   │   └── test.js
│   │   ├── package.json
│   │   ├── README.md
│   │   └── test
│   │   ├── index.js
│   │   └── mock-server.js
│   ├── package.json
│   ├── README.md
│   └── src
│   └── css
│   ├── components
│   │   ├── _adaptive.scss
│   │   ├── _audio.scss
│   │   ├── _big-play.scss
│   │   ├── _button.scss
│   │   ├── _captions.scss
│   │   ├── _captions-settings.scss
│   │   ├── _chapters.scss
│   │   ├── _close-button.scss
│   │   ├── _control-bar.scss
│   │   ├── _control.scss
│   │   ├── _control-spacer.scss
│   │   ├── _descriptions.scss
│   │   ├── _error.scss
│   │   ├── _fullscreen.scss
│   │   ├── _layout.scss
│   │   ├── _live.scss
│   │   ├── _loading.scss
│   │   ├── menu
│   │   │   ├── _menu-inline.scss
│   │   │   ├── _menu-popup.scss
│   │   │   └── _menu.scss
│   │   ├── _modal-dialog.scss
│   │   ├── _playback-rate.scss
│   │   ├── _play-pause.scss
│   │   ├── _poster.scss
│   │   ├── _progress.scss
│   │   ├── _slider.scss
│   │   ├── _subs-caps.scss
│   │   ├── _subtitles.scss
│   │   ├── _text-track.scss
│   │   ├── _time.scss
│   │   └── _volume.scss
│   ├── ie8.css
│   ├── _print.scss
│   ├── _private-variables.scss
│   ├── utilities
│   │   └── _linear-gradient.scss
│   ├── _utilities.scss
│   ├── _variables.scss
│   ├── video-js.scss
│   ├── vjs-cdn.scss
│   └── vjs.scss
└── 该项目主要是有弹幕.txt

163 directories, 2272 files

标签:

实例下载地址

弹幕播放器Demo

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警