New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@vueuse/rxjs

Package Overview
Dependencies
Maintainers
1
Versions
257
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vueuse/rxjs - npm Package Compare versions

Comparing version 4.0.0-beta.17 to 4.0.0-beta.18

4

package.json
{
"name": "@vueuse/rxjs",
"description": "Enables rxjs reactive functions in Vue",
"version": "4.0.0-beta.17",
"description": "Enables RxJS reactive functions in Vue",
"version": "4.0.0-beta.18",
"main": "index.cjs.js",

@@ -6,0 +6,0 @@ "types": "index.d.ts",

@@ -20,3 +20,3 @@ # @vueuse/rxjs

- Rxjs
- RxJS
- [`from`](https://vueuse.js.org/?path=/story/add-ons-rxjs--from) — two wrappers around of the original functions to allow use ref objects

@@ -35,6 +35,6 @@ - [`toObserver`](https://vueuse.js.org/?path=/story/add-ons-rxjs--toobserver) — sugar function to convert a ref in an observer

```ts
import { fromEvent, from, useObservable } from '@vueuse/rxjs'
import { ref } from 'vue-demi'
import { fromEvent, from, useObservable } from '@vueuse/rxjs'
import { of, forkJoin } from 'rxjs'
import { ajax } from "rxjs/ajax"
import { ajax } from 'rxjs/ajax'
import { take, mergeMap, concatAll, pluck, map, scan } from 'rxjs/operators'

@@ -50,3 +50,3 @@

take(4),
mergeMap(({id, userId, title}) => forkJoin({
mergeMap(({ id, userId, title }) => forkJoin({
id: of(id),

@@ -53,0 +53,0 @@ comments: ajax.getJSON(`${BASE_URL}/posts/${id}/comments`).pipe(

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc