new license file version [CI SKIP]
This commit is contained in:
@@ -0,0 +1 @@
|
||||
export * from 'rxjs-compat/operators/window';
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"exhaust.js","sources":["../src/operator/exhaust.ts"],"names":[],"mappings":";;;;;AAAA,kDAA6C"}
|
||||
@@ -0,0 +1,30 @@
|
||||
/** PURE_IMPORTS_START _scheduler_async,_scan,_observable_defer,_map PURE_IMPORTS_END */
|
||||
import { async } from '../scheduler/async';
|
||||
import { scan } from './scan';
|
||||
import { defer } from '../observable/defer';
|
||||
import { map } from './map';
|
||||
export function timeInterval(scheduler) {
|
||||
if (scheduler === void 0) {
|
||||
scheduler = async;
|
||||
}
|
||||
return function (source) {
|
||||
return defer(function () {
|
||||
return source.pipe(scan(function (_a, value) {
|
||||
var current = _a.current;
|
||||
return ({ value: value, current: scheduler.now(), last: current });
|
||||
}, { current: scheduler.now(), value: undefined, last: undefined }), map(function (_a) {
|
||||
var current = _a.current, last = _a.last, value = _a.value;
|
||||
return new TimeInterval(value, current - last);
|
||||
}));
|
||||
});
|
||||
};
|
||||
}
|
||||
var TimeInterval = /*@__PURE__*/ (function () {
|
||||
function TimeInterval(value, interval) {
|
||||
this.value = value;
|
||||
this.interval = interval;
|
||||
}
|
||||
return TimeInterval;
|
||||
}());
|
||||
export { TimeInterval };
|
||||
//# sourceMappingURL=timeInterval.js.map
|
||||
@@ -0,0 +1,332 @@
|
||||
<!-- Please do not edit this file. Edit the `blah` field in the `package.json` instead. If in doubt, open an issue. -->
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# parse-path
|
||||
|
||||
[![Support me on Patreon][badge_patreon]][patreon] [![Buy me a book][badge_amazon]][amazon] [![PayPal][badge_paypal_donate]][paypal-donations] [](https://github.com/IonicaBizau/ama) [](https://travis-ci.org/IonicaBizau/parse-path/) [](https://www.npmjs.com/package/parse-path) [](https://www.npmjs.com/package/parse-path) [](https://www.codementor.io/johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github)
|
||||
|
||||
<a href="https://www.buymeacoffee.com/H96WwChMy" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png" alt="Buy Me A Coffee"></a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
> Parse paths (local paths, urls: ssh/git/etc)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :cloud: Installation
|
||||
|
||||
```sh
|
||||
# Using npm
|
||||
npm install --save parse-path
|
||||
|
||||
# Using yarn
|
||||
yarn add parse-path
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :clipboard: Example
|
||||
|
||||
|
||||
|
||||
```js
|
||||
// Dependencies
|
||||
const parsePath = require("parse-path")
|
||||
|
||||
console.log(parsePath("http://ionicabizau.net/blog"))
|
||||
// { protocols: [ 'http' ],
|
||||
// protocol: 'http',
|
||||
// port: null,
|
||||
// resource: 'ionicabizau.net',
|
||||
// user: '',
|
||||
// pathname: '/blog',
|
||||
// hash: '',
|
||||
// search: '',
|
||||
// href: 'http://ionicabizau.net/blog' }
|
||||
|
||||
console.log(parsePath("http://domain.com/path/name?foo=bar&bar=42#some-hash"))
|
||||
// { protocols: [ 'http' ],
|
||||
// protocol: 'http',
|
||||
// port: null,
|
||||
// resource: 'domain.com',
|
||||
// user: '',
|
||||
// pathname: '/path/name',
|
||||
// hash: 'some-hash',
|
||||
// search: 'foo=bar&bar=42',
|
||||
// href: 'http://domain.com/path/name?foo=bar&bar=42#some-hash' }
|
||||
|
||||
console.log(parsePath("git+ssh://git@host.xz/path/name.git"))
|
||||
// { protocols: [ 'git', 'ssh' ],
|
||||
// protocol: 'git',
|
||||
// port: null,
|
||||
// resource: 'host.xz',
|
||||
// user: 'git',
|
||||
// pathname: '/path/name.git',
|
||||
// hash: '',
|
||||
// search: '',
|
||||
// href: 'git+ssh://git@host.xz/path/name.git' }
|
||||
|
||||
console.log(parsePath("git@github.com:IonicaBizau/git-stats.git"))
|
||||
// { protocols: [],
|
||||
// protocol: 'ssh',
|
||||
// port: null,
|
||||
// resource: 'github.com',
|
||||
// user: 'git',
|
||||
// pathname: '/IonicaBizau/git-stats.git',
|
||||
// hash: '',
|
||||
// search: '',
|
||||
// href: 'git@github.com:IonicaBizau/git-stats.git' }
|
||||
```
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :question: Get Help
|
||||
|
||||
There are few ways to get help:
|
||||
|
||||
|
||||
|
||||
1. Please [post questions on Stack Overflow](https://stackoverflow.com/questions/ask). You can open issues with questions, as long you add a link to your Stack Overflow question.
|
||||
2. For bug reports and feature requests, open issues. :bug:
|
||||
3. For direct and quick help, you can [use Codementor](https://www.codementor.io/johnnyb). :rocket:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :memo: Documentation
|
||||
|
||||
|
||||
### `parsePath(url)`
|
||||
Parses the input url.
|
||||
|
||||
#### Params
|
||||
|
||||
- **String** `url`: The input url.
|
||||
|
||||
#### Return
|
||||
- **Object** An object containing the following fields:
|
||||
- `protocols` (Array): An array with the url protocols (usually it has one element).
|
||||
- `protocol` (String): The first protocol, `"ssh"` (if the url is a ssh url) or `"file"`.
|
||||
- `port` (null|Number): The domain port.
|
||||
- `resource` (String): The url domain (including subdomains).
|
||||
- `user` (String): The authentication user (usually for ssh urls).
|
||||
- `pathname` (String): The url pathname.
|
||||
- `hash` (String): The url hash.
|
||||
- `search` (String): The url querystring value.
|
||||
- `href` (String): The input url.
|
||||
- `query` (Object): The url querystring, parsed as object.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :yum: How to contribute
|
||||
Have an idea? Found a bug? See [how to contribute][contributing].
|
||||
|
||||
|
||||
## :sparkling_heart: Support my projects
|
||||
I open-source almost everything I can, and I try to reply to everyone needing help using these projects. Obviously,
|
||||
this takes time. You can integrate and use these projects in your applications *for free*! You can even change the source code and redistribute (even resell it).
|
||||
|
||||
However, if you get some profit from this or just want to encourage me to continue creating stuff, there are few ways you can do it:
|
||||
|
||||
|
||||
- Starring and sharing the projects you like :rocket:
|
||||
- [![Buy me a book][badge_amazon]][amazon]—I love books! I will remember you after years if you buy me one. :grin: :book:
|
||||
- [![PayPal][badge_paypal]][paypal-donations]—You can make one-time donations via PayPal. I'll probably buy a ~~coffee~~ tea. :tea:
|
||||
- [![Support me on Patreon][badge_patreon]][patreon]—Set up a recurring monthly donation and you will get interesting news about what I'm doing (things that I don't share with everyone).
|
||||
- **Bitcoin**—You can send me bitcoins at this address (or scanning the code below): `1P9BRsmazNQcuyTxEqveUsnf5CERdq35V6`
|
||||
|
||||

|
||||
|
||||
|
||||
Thanks! :heart:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :dizzy: Where is this library used?
|
||||
If you are using this library in one of your projects, add it in this list. :sparkles:
|
||||
|
||||
- `parse-url`
|
||||
- `@semantic-release/gitlab`
|
||||
- `@pvm/gitlab`
|
||||
- `eleventy-plugin-embed-soundcloud`
|
||||
- `@enkeledi/react-native-week-month-date-picker`
|
||||
- `@hemith/react-native-tnk`
|
||||
- `npm_one_1_2_3`
|
||||
- `native-kakao-login`
|
||||
- `rn-adyen-dropin`
|
||||
- `react-fsm-router`
|
||||
- `react-native-contact-list`
|
||||
- `react-native-biometric-authenticate`
|
||||
- `react-native-arunmeena1987`
|
||||
- `react-native-is7`
|
||||
- `react-native-kakao-maps`
|
||||
- `react-native-my-first-try-arun-ramya`
|
||||
- `react-native-payu-payment-testing`
|
||||
- `react-native-ytximkit`
|
||||
- `tria-prima`
|
||||
- `sm-versioning`
|
||||
- `@corelmax/react-native-my2c2p-sdk`
|
||||
- `@datalogic/react-native-datalogic-module`
|
||||
- `@felipesimmi/react-native-datalogic-module`
|
||||
- `@hawkingnetwork/react-native-tab-view`
|
||||
- `drowl-base-theme-iconset`
|
||||
- `native-apple-login`
|
||||
- `react-native-cplus`
|
||||
- `npm_qwerty`
|
||||
- `react-native-arunjeyam1987`
|
||||
- `react-native-bubble-chart`
|
||||
- `react-native-flyy`
|
||||
- `@alphy11/semantic-release-gitlab`
|
||||
- `@apardellass/react-native-audio-stream`
|
||||
- `@fgreinacher/semantic-release-gitlab`
|
||||
- `@geeky-apo/react-native-advanced-clipboard`
|
||||
- `@j4s0n/semantic-release-gitlab`
|
||||
- `@saad27/react-native-bottom-tab-tour`
|
||||
- `@xudong/semantic-release-gitlab`
|
||||
- `candlelabssdk`
|
||||
- `react-native-dsphoto-module`
|
||||
- `react-native-responsive-size`
|
||||
- `react-native-sayhello-module`
|
||||
- `@flareapp/ignition-ui`
|
||||
- `react-feedback-sdk`
|
||||
- `npm_one_12_34_1_`
|
||||
- `npm_one_2_2`
|
||||
- `payutesting`
|
||||
- `semantic-release-gitee`
|
||||
- `semantic-release-gitlab-plugin`
|
||||
- `@pvm/github`
|
||||
- `@pvm/plugin-conventional-changelog`
|
||||
- `@devdiary/semantic-devdiary-release`
|
||||
- `birken-react-native-community-image-editor`
|
||||
- `luojia-cli-dev`
|
||||
- `reac-native-arun-ramya-test`
|
||||
- `react-native-plugpag-wrapper`
|
||||
- `react-native-pulsator-native`
|
||||
- `react-native-arun-ramya-test`
|
||||
- `react-native-arunramya151`
|
||||
- `react-native-transtracker-library`
|
||||
- `semantic-release-version`
|
||||
- `@screeb/react-native`
|
||||
- `@cloudoki/donderflow`
|
||||
- `@buganto/client`
|
||||
- `@tjoussen/semantic-release-gitlab-mr`
|
||||
- `astra-ufo-sdk`
|
||||
- `react-native-syan-photo-picker`
|
||||
- `@wecraftapps/react-native-use-keyboard`
|
||||
- `electron-info`
|
||||
- `l2forlerna`
|
||||
- `native-google-login`
|
||||
- `raact-native-arunramya151`
|
||||
- `react-native-test-module-hhh`
|
||||
- `reddit-title-has-verbatim-quote`
|
||||
- `react-native-badge-control`
|
||||
- `rn-tm-notify`
|
||||
- `react-native-jsi-device-info`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## :scroll: License
|
||||
|
||||
[MIT][license] © [Ionică Bizău][website]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[license]: /LICENSE
|
||||
[website]: https://ionicabizau.net
|
||||
[contributing]: /CONTRIBUTING.md
|
||||
[docs]: /DOCUMENTATION.md
|
||||
[badge_patreon]: https://ionicabizau.github.io/badges/patreon.svg
|
||||
[badge_amazon]: https://ionicabizau.github.io/badges/amazon.svg
|
||||
[badge_paypal]: https://ionicabizau.github.io/badges/paypal.svg
|
||||
[badge_paypal_donate]: https://ionicabizau.github.io/badges/paypal_donate.svg
|
||||
[patreon]: https://www.patreon.com/ionicabizau
|
||||
[amazon]: http://amzn.eu/hRo9sIZ
|
||||
[paypal-donations]: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVXDDLKKLQRJW
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.00578,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.09248,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00578,"92":0,"93":0,"94":0,"95":0.01156,"96":0,"97":0,"98":0,"99":0,"100":0.04046,"101":0.01156,"102":0.10404,"103":0,"104":0.02312,"105":0.00578,"106":0.01734,"107":0.04624,"108":2.5432,"109":1.52014,"110":0.00578,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0.289,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0.00578,"75":0.00578,"76":0,"77":0.02312,"78":0,"79":0.05202,"80":0.00578,"81":0,"83":0,"84":0.01734,"85":0.00578,"86":0.00578,"87":0.00578,"88":0.00578,"89":0,"90":0.01734,"91":0.00578,"92":0.00578,"93":0,"94":0,"95":0,"96":0,"97":0.0289,"98":0,"99":0,"100":0.01156,"101":0,"102":0.01734,"103":0.0578,"104":0.0578,"105":1.28316,"106":0.65892,"107":0.55488,"108":7.50244,"109":5.2887,"110":0,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.01156,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0.01734,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.00578,"92":0,"93":0.89012,"94":1.71088,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0.0289,"99":0,"100":0.01156,"101":0,"102":0,"103":0,"104":0.00578,"105":0.04624,"106":0.01734,"107":0.3757,"108":3.2368,"109":2.34668},E:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0.1156,"14":0.09826,"15":0.01156,_:"0","3.1":0,"3.2":0,"5.1":0.02312,"6.1":0,"7.1":0,"9.1":0.01156,"10.1":0,"11.1":0,"12.1":0.02312,"13.1":0.81498,"14.1":0.13872,"15.1":0.05202,"15.2-15.3":0.06358,"15.4":0.22542,"15.5":0.16762,"15.6":0.94214,"16.0":0.0867,"16.1":0.41616,"16.2":0.5491,"16.3":0.03468},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0.02904,"9.0-9.2":0,"9.3":0.02541,"10.0-10.2":0,"10.3":0.02178,"11.0-11.2":0,"11.3-11.4":0.00726,"12.0-12.1":0.01452,"12.2-12.5":1.61522,"13.0-13.1":0.01089,"13.2":0.01089,"13.3":0.01089,"13.4-13.7":0.10526,"14.0-14.4":0.24319,"14.5-14.8":2.17056,"15.0-15.1":0.25408,"15.2-15.3":0.22141,"15.4":0.23956,"15.5":0.87476,"15.6":4.30482,"16.0":4.03986,"16.1":13.54967,"16.2":7.10332,"16.3":0.48638},P:{"4":0,"5.0-5.4":0.01029,"6.2-6.4":0,"7.2-7.4":0.1029,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0,"12.0":0,"13.0":0,"14.0":0.02058,"15.0":0.03087,"16.0":0.03087,"17.0":0.09261,"18.0":0.08232,"19.0":3.22078},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.06417,"4.2-4.3":0.04011,"4.4":0,"4.4.3-4.4.4":0.05214},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0.01156,"9":0,"10":0,"11":0.03468,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.93262},Q:{"13.1":0},O:{"0":0.01266},H:{"0":0.40751},L:{"0":24.07676},S:{"2.5":0}};
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"fromEventPattern.js","sources":["../../src/internal/observable/fromEventPattern.ts"],"names":[],"mappings":";;AAAA,4CAA2C;AAC3C,2CAA0C;AAC1C,iDAAgD;AAEhD,wCAAuC;AAwIvC,SAAgB,gBAAgB,CAAI,UAA8C,EAC9C,aAAiE,EACjE,cAAsC;IAExE,IAAI,cAAc,EAAE;QAElB,OAAO,gBAAgB,CAAI,UAAU,EAAE,aAAa,CAAC,CAAC,IAAI,CACxD,SAAG,CAAC,UAAA,IAAI,IAAI,OAAA,iBAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,cAAc,eAAI,IAAI,EAAE,CAAC,CAAC,cAAc,CAAC,IAAI,CAAC,EAA9D,CAA8D,CAAC,CAC5E,CAAC;KACH;IAED,OAAO,IAAI,uBAAU,CAAU,UAAA,UAAU;QACvC,IAAM,OAAO,GAAG;YAAC,WAAS;iBAAT,UAAS,EAAT,qBAAS,EAAT,IAAS;gBAAT,sBAAS;;YAAK,OAAA,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAA1C,CAA0C,CAAC;QAE1E,IAAI,QAAa,CAAC;QAClB,IAAI;YACF,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC;SAChC;QAAC,OAAO,GAAG,EAAE;YACZ,UAAU,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC;YACtB,OAAO,SAAS,CAAC;SAClB;QAED,IAAI,CAAC,uBAAU,CAAC,aAAa,CAAC,EAAE;YAC9B,OAAO,SAAS,CAAC;SAClB;QAED,OAAO,cAAM,OAAA,aAAa,CAAC,OAAO,EAAE,QAAQ,CAAC,EAAhC,CAAgC,CAAE;IACjD,CAAC,CAAC,CAAC;AACL,CAAC;AA5BD,4CA4BC"}
|
||||
@@ -0,0 +1 @@
|
||||
module.exports={C:{"2":0,"3":0,"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0.0087,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0.00435,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0.0087,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0.00435,"67":0,"68":0.00435,"69":0,"70":0,"71":0,"72":0.00435,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0.00435,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0.01739,"92":0,"93":0.0087,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00435,"102":0.07826,"103":0,"104":0.01304,"105":0.05218,"106":0.05652,"107":0.06522,"108":0.51741,"109":0.28697,"110":0.0087,"111":0,"3.5":0,"3.6":0},D:{"4":0,"5":0,"6":0,"7":0,"8":0,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0,"38":0,"39":0,"40":0.1,"41":0,"42":0,"43":0.00435,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0.00435,"57":0,"58":0,"59":0,"60":0,"61":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0.0087,"71":0,"72":0.01739,"73":0.0087,"74":0,"75":0.0087,"76":0.06087,"77":0.00435,"78":0,"79":0.0087,"80":0.00435,"81":0,"83":0.00435,"84":0.00435,"85":0.02609,"86":0,"87":0,"88":0.0087,"89":0.0087,"90":0.0087,"91":0.0087,"92":0.0087,"93":0.07392,"94":0,"95":0.00435,"96":0.00435,"97":0.0087,"98":0.00435,"99":0.00435,"100":0.01739,"101":0.00435,"102":0.01304,"103":0.23914,"104":0.04348,"105":0.02174,"106":0.04783,"107":0.10435,"108":6.2046,"109":3.20448,"110":0.0087,"111":0,"112":0},F:{"9":0,"11":0,"12":0,"15":0,"16":0,"17":0,"18":0,"19":0,"20":0,"21":0,"22":0,"23":0,"24":0,"25":0,"26":0,"27":0,"28":0.00435,"29":0,"30":0,"31":0,"32":0,"33":0,"34":0,"35":0,"36":0,"37":0.0087,"38":0,"39":0,"40":0,"41":0,"42":0,"43":0,"44":0,"45":0,"46":0,"47":0,"48":0,"49":0,"50":0,"51":0,"52":0,"53":0,"54":0,"55":0,"56":0,"57":0,"58":0,"60":0,"62":0,"63":0,"64":0,"65":0,"66":0,"67":0,"68":0,"69":0,"70":0,"71":0,"72":0,"73":0,"74":0,"75":0,"76":0,"77":0,"78":0,"79":0,"80":0,"81":0,"82":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0.00435,"93":0.1,"94":0.89569,"9.5-9.6":0,"10.0-10.1":0,"10.5":0,"10.6":0,"11.1":0,"11.5":0,"11.6":0,"12.1":0},B:{"12":0,"13":0,"14":0,"15":0,"16":0,"17":0,"18":0,"79":0,"80":0,"81":0,"83":0,"84":0,"85":0,"86":0,"87":0,"88":0,"89":0,"90":0,"91":0,"92":0,"93":0,"94":0,"95":0,"96":0,"97":0,"98":0,"99":0,"100":0,"101":0.00435,"102":0,"103":0,"104":0,"105":0,"106":0.01304,"107":0.03913,"108":0.90004,"109":0.96526},E:{"4":0,"5":0,"6":0,"7":0,"8":0.00435,"9":0,"10":0,"11":0,"12":0,"13":0,"14":0.04783,"15":0.0087,_:"0","3.1":0,"3.2":0,"5.1":0,"6.1":0,"7.1":0,"9.1":0,"10.1":0,"11.1":0,"12.1":0.00435,"13.1":0.04348,"14.1":0.06522,"15.1":0.05652,"15.2-15.3":0.02609,"15.4":0.20001,"15.5":0.23044,"15.6":0.73916,"16.0":0.06087,"16.1":0.27827,"16.2":0.70003,"16.3":0.05218},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00991,"6.0-6.1":0,"7.0-7.1":0.0066,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.1618,"10.0-10.2":0,"10.3":0.12878,"11.0-11.2":0.01321,"11.3-11.4":0.15849,"12.0-12.1":0.02972,"12.2-12.5":0.51841,"13.0-13.1":0.0033,"13.2":0,"13.3":0.01321,"13.4-13.7":0.01651,"14.0-14.4":0.18491,"14.5-14.8":0.55473,"15.0-15.1":0.26416,"15.2-15.3":1.06653,"15.4":0.80568,"15.5":1.20852,"15.6":4.00528,"16.0":3.50008,"16.1":9.65163,"16.2":7.32044,"16.3":0.77266},P:{"4":0.0642,"5.0-5.4":0,"6.2-6.4":0,"7.2-7.4":0.09631,"8.2":0,"9.2":0,"10.1":0,"11.1-11.2":0.0107,"12.0":0.0107,"13.0":0.0107,"14.0":0.0214,"15.0":0.0214,"16.0":0.09631,"17.0":0.0428,"18.0":0.0749,"19.0":2.55744},I:{"0":0,"3":0,"4":0.4569,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.09138,"4.4":0,"4.4.3-4.4.4":0.54828},K:{_:"0 10 11 12 11.1 11.5 12.1"},A:{"6":0,"7":0,"8":0,"9":0,"10":0,"11":0.01304,"5.5":0},J:{"7":0,"10":0},N:{"10":0,"11":0},R:{_:"0"},M:{"0":0.26564},Q:{"13.1":0},O:{"0":0.03391},H:{"0":0.13377},L:{"0":46.22219},S:{"2.5":0.00565}};
|
||||
@@ -0,0 +1,11 @@
|
||||
/** PURE_IMPORTS_START _multicast,_refCount,_Subject PURE_IMPORTS_END */
|
||||
import { multicast } from './multicast';
|
||||
import { refCount } from './refCount';
|
||||
import { Subject } from '../Subject';
|
||||
function shareSubjectFactory() {
|
||||
return new Subject();
|
||||
}
|
||||
export function share() {
|
||||
return function (source) { return refCount()(multicast(shareSubjectFactory)(source)); };
|
||||
}
|
||||
//# sourceMappingURL=share.js.map
|
||||
@@ -0,0 +1,6 @@
|
||||
/** PURE_IMPORTS_START _AsapAction,_AsapScheduler PURE_IMPORTS_END */
|
||||
import { AsapAction } from './AsapAction';
|
||||
import { AsapScheduler } from './AsapScheduler';
|
||||
export var asapScheduler = /*@__PURE__*/ new AsapScheduler(AsapAction);
|
||||
export var asap = asapScheduler;
|
||||
//# sourceMappingURL=asap.js.map
|
||||
@@ -0,0 +1 @@
|
||||
export * from 'rxjs-compat/operators/windowToggle';
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"publish.js","sources":["../../../src/internal/operators/publish.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,MAAM,YAAY,CAAC;AACrC,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AA4DxC,MAAM,UAAU,OAAO,CAAO,QAAiC;IAC7D,OAAO,QAAQ,CAAC,CAAC;QACf,SAAS,CAAC,GAAG,EAAE,CAAC,IAAI,OAAO,EAAK,EAAE,QAAQ,CAAC,CAAC,CAAC;QAC7C,SAAS,CAAC,IAAI,OAAO,EAAK,CAAC,CAAC;AAChC,CAAC"}
|
||||
@@ -0,0 +1,4 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
require("rxjs-compat/add/operator/zipAll");
|
||||
//# sourceMappingURL=zipAll.js.map
|
||||
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"first.js","sources":["../src/operator/first.ts"],"names":[],"mappings":";;;;;AAAA,gDAA2C"}
|
||||
@@ -0,0 +1,10 @@
|
||||
'use strict';
|
||||
const resolveFrom = require('resolve-from');
|
||||
|
||||
module.exports = (fromDirectory, moduleId) => require(resolveFrom(fromDirectory, moduleId));
|
||||
|
||||
module.exports.silent = (fromDirectory, moduleId) => {
|
||||
try {
|
||||
return require(resolveFrom(fromDirectory, moduleId));
|
||||
} catch (_) {}
|
||||
};
|
||||
@@ -0,0 +1,9 @@
|
||||
|
||||
// johanbrook.com/browsers/native-momentum-scrolling-ios-5/
|
||||
// introduced in iOS5b2. Possible API may change...
|
||||
|
||||
Modernizr.addTest("overflowscrolling",function(){
|
||||
return Modernizr.testAllProps("overflowScrolling");
|
||||
});
|
||||
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var Observable_1 = require("../Observable");
|
||||
var Subscription_1 = require("../Subscription");
|
||||
var observable_1 = require("../symbol/observable");
|
||||
function scheduleObservable(input, scheduler) {
|
||||
return new Observable_1.Observable(function (subscriber) {
|
||||
var sub = new Subscription_1.Subscription();
|
||||
sub.add(scheduler.schedule(function () {
|
||||
var observable = input[observable_1.observable]();
|
||||
sub.add(observable.subscribe({
|
||||
next: function (value) { sub.add(scheduler.schedule(function () { return subscriber.next(value); })); },
|
||||
error: function (err) { sub.add(scheduler.schedule(function () { return subscriber.error(err); })); },
|
||||
complete: function () { sub.add(scheduler.schedule(function () { return subscriber.complete(); })); },
|
||||
}));
|
||||
}));
|
||||
return sub;
|
||||
});
|
||||
}
|
||||
exports.scheduleObservable = scheduleObservable;
|
||||
//# sourceMappingURL=scheduleObservable.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
function __export(m) {
|
||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||
}
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__export(require("rxjs-compat/operators/switchAll"));
|
||||
//# sourceMappingURL=switchAll.js.map
|
||||
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
function __export(m) {
|
||||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
|
||||
}
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__export(require("rxjs-compat/observable/timer"));
|
||||
//# sourceMappingURL=timer.js.map
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
Generate a [cryptographically strong](https://en.m.wikipedia.org/wiki/Strong_cryptography) random string.
|
||||
|
||||
@param length - Length of the returned string.
|
||||
@returns A [`hex`](https://en.wikipedia.org/wiki/Hexadecimal) string.
|
||||
|
||||
@example
|
||||
```
|
||||
import cryptoRandomString = require('crypto-random-string');
|
||||
|
||||
cryptoRandomString(10);
|
||||
//=> '2cf05d94db'
|
||||
```
|
||||
*/
|
||||
declare function cryptoRandomString(length: number): string;
|
||||
|
||||
export = cryptoRandomString;
|
||||
Reference in New Issue
Block a user