├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── lib └── xstream │ ├── extra │ ├── concat.js │ ├── debounce.js │ ├── delay.js │ ├── dropRepeats.js │ ├── dropUntil.js │ ├── flattenConcurrently.js │ ├── flattenSequentially.js │ ├── fromDiagram.js │ ├── pairwise.js │ ├── sampleCombine.js │ ├── split.js │ ├── throttle.js │ └── tween.js │ ├── index.js │ ├── ponyfill.js │ └── symbol-observable.js └── wrappers ├── audio.js ├── device.js ├── event.js ├── file.js ├── http.js ├── image.js ├── location.js ├── record.js ├── socket.js ├── storage.js ├── user.js ├── video.js └── voice.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/index.js -------------------------------------------------------------------------------- /lib/xstream/extra/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/concat.js -------------------------------------------------------------------------------- /lib/xstream/extra/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/debounce.js -------------------------------------------------------------------------------- /lib/xstream/extra/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/delay.js -------------------------------------------------------------------------------- /lib/xstream/extra/dropRepeats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/dropRepeats.js -------------------------------------------------------------------------------- /lib/xstream/extra/dropUntil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/dropUntil.js -------------------------------------------------------------------------------- /lib/xstream/extra/flattenConcurrently.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/flattenConcurrently.js -------------------------------------------------------------------------------- /lib/xstream/extra/flattenSequentially.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/flattenSequentially.js -------------------------------------------------------------------------------- /lib/xstream/extra/fromDiagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/fromDiagram.js -------------------------------------------------------------------------------- /lib/xstream/extra/pairwise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/pairwise.js -------------------------------------------------------------------------------- /lib/xstream/extra/sampleCombine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/sampleCombine.js -------------------------------------------------------------------------------- /lib/xstream/extra/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/split.js -------------------------------------------------------------------------------- /lib/xstream/extra/throttle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/throttle.js -------------------------------------------------------------------------------- /lib/xstream/extra/tween.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/extra/tween.js -------------------------------------------------------------------------------- /lib/xstream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/index.js -------------------------------------------------------------------------------- /lib/xstream/ponyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/ponyfill.js -------------------------------------------------------------------------------- /lib/xstream/symbol-observable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/lib/xstream/symbol-observable.js -------------------------------------------------------------------------------- /wrappers/audio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/audio.js -------------------------------------------------------------------------------- /wrappers/device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/device.js -------------------------------------------------------------------------------- /wrappers/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/event.js -------------------------------------------------------------------------------- /wrappers/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/file.js -------------------------------------------------------------------------------- /wrappers/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/http.js -------------------------------------------------------------------------------- /wrappers/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/image.js -------------------------------------------------------------------------------- /wrappers/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/location.js -------------------------------------------------------------------------------- /wrappers/record.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/record.js -------------------------------------------------------------------------------- /wrappers/socket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/socket.js -------------------------------------------------------------------------------- /wrappers/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/storage.js -------------------------------------------------------------------------------- /wrappers/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/user.js -------------------------------------------------------------------------------- /wrappers/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/video.js -------------------------------------------------------------------------------- /wrappers/voice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wpcfan/wxstream/HEAD/wrappers/voice.js --------------------------------------------------------------------------------