Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@factor/app

Package Overview
Dependencies
Maintainers
2
Versions
125
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@factor/app - npm Package Compare versions

Comparing version 1.7.9 to 1.7.10

4

package.json
{
"name": "@factor/app",
"version": "1.7.9",
"version": "1.7.10",
"license": "GPL-2.0",

@@ -15,3 +15,3 @@ "publishConfig": {

},
"gitHead": "2d8956306076602e17937d5430236bacd5660482"
"gitHead": "ffa866a400aff94be8dcfb53c3d8090fc474cc76"
}

@@ -6,16 +6,7 @@ import { applyFilters, runCallbacks, addFilter } from "@factor/api/hooks"

import qs from "qs"
import { uniq, getGlobalThis } from "@factor/api"
import { uniq } from "@factor/api"
let __initialPageLoad = true
let __routerInstance: VueRouter
const GLOBALS = getGlobalThis() as any
GLOBALS.__routerInstance = ""
declare module "vue/types/vue" {
export interface VueConstructor {
$router: VueRouter
}
}
/**

@@ -152,3 +143,3 @@ * In client, when we change routes, we should run checks for auth, preloaders, etc.

GLOBALS.__routerInstance = router
__routerInstance = router

@@ -159,3 +150,3 @@ return router

export const getRouter = (): VueRouter => {
return GLOBALS.__routerInstance
return __routerInstance
}

@@ -167,3 +158,3 @@

export const setRouter = (r: VueRouter): void => {
GLOBALS.__routerInstance = r
__routerInstance = r
}

@@ -170,0 +161,0 @@

@@ -62,3 +62,3 @@ import Vuex from "vuex"

export const stored = (key?: string | ObjectId | number): any => {
if (!__store || !key) return undefined
if (!__store || !key) return

@@ -65,0 +65,0 @@ return __store.getters["getItem"](key)

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