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

@byu-oit/vue-decision-processing-components

Package Overview
Dependencies
Maintainers
0
Versions
325
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@byu-oit/vue-decision-processing-components - npm Package Compare versions

Comparing version 8.37.0-0 to 8.37.0-1

2

package.json
{
"name": "@byu-oit/vue-decision-processing-components",
"version": "8.37.0-0",
"version": "8.37.0-1",
"description": "Vue components shared between decision processing systems for the CES schools.",

@@ -5,0 +5,0 @@ "dependencies": {

@@ -37,2 +37,17 @@ import Vue from 'vue'

const cesHoldsVirtualFlag = flags => {
const cesHoldsFlag = flags.filter(f => f.value === 'cesHolds')
if (cesHoldsFlag.length > 0) return cesHoldsFlag[0]
const cesFlags = flags.find(f => f.value === 'CES')
if (cesFlags != null) {
return { ...cesFlags, state: 'fail' }
}
const value = 'cesHolds'
const name = 'CES Standard Hold'
const type = 'Process'
return { value, name, type, isActive: false, isSet: false, isCleared: false, isBlocking: true, state: 'indeterminate' }
}
// getters

@@ -51,2 +66,4 @@ export const getters = {

return endorseVirtualFlag(flags)
} else if (flagValue === 'cesHolds') {
return cesHoldsVirtualFlag(flags)
}

@@ -53,0 +70,0 @@ const flag = flags.find(({ value }) => value === flagValue)

Sorry, the diff of this file is not supported yet

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