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

qipp-config-environment

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qipp-config-environment - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

2

package.json
{
"name": "qipp-config-environment",
"version": "2.0.1",
"version": "2.0.2",
"title": "Environment configuration",

@@ -5,0 +5,0 @@ "description": "Environment configuration file for the ATH clients.",

@@ -13,10 +13,8 @@ ;(function () {

) {
// Get an instance of the $windowProvider.
var match = $windowProvider.$get().location.hostname
.match(/^[\w-]+\.(\w+)\.qipp\.com$/)
if (match) {
config.api.host = 'https://home.' + match[1] + '.qipp.com'
}
.match(/^[\w-]+\.(\w+\.)qipp\.com$/)
var subdomainPart = match ? match[1] : ''
config.api.host = 'https://home.' + subdomainPart + 'qipp.com'
}
])
}())
;(function () {
'use strict'
angular.module('flatapp.config', []).constant('config', {
api: {
host: 'https://home.qipp.com'
}
})
angular.module('flatapp.config', []).constant('config', {api: {host: ''}})
}())

@@ -10,3 +10,3 @@ ;(function () {

function (config) {
config.api.host = 'https://home.qipp.com'
config.api.host = ''
}

@@ -13,0 +13,0 @@ )

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