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

@live-change/framework

Package Overview
Dependencies
Maintainers
0
Versions
300
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@live-change/framework - npm Package Compare versions

Comparing version 0.8.107 to 0.8.108

10

lib/utils/validators.js

@@ -178,2 +178,12 @@ import { mergeDeep } from "../utils.js"

}
},
httpUrlSoft: (settings) => (value) => {
if(!value) return false // ignore empty
try {
if(!value.match(/^https?:\/\//)) value = 'https://'+value
const url = new URL(value)
if(url.protocol !== 'http:' && url.protocol !== 'https:') return 'wrongUrl'
} catch(e) {
return 'wrongUrl'
}
}

@@ -180,0 +190,0 @@ }

8

package.json
{
"name": "@live-change/framework",
"version": "0.8.107",
"version": "0.8.108",
"description": "Live Change Framework - ultimate solution for real time mobile/web apps",

@@ -25,6 +25,6 @@ "main": "index.js",

"devDependencies": {
"@live-change/dao": "^0.8.107",
"@live-change/uid": "^0.8.107"
"@live-change/dao": "^0.8.108",
"@live-change/uid": "^0.8.108"
},
"gitHead": "da00b9062a0238e1497c76009b0bd9e74ff7a376"
"gitHead": "b272a01967e326d10874fea13353ab8fa5c30fe8"
}
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