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

@denimlabs/media-validation-engine

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@denimlabs/media-validation-engine - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

10

dist/image-validation.js

@@ -124,2 +124,3 @@ "use strict";

var minWidth = 500;
var minHeight = 300;

@@ -130,2 +131,6 @@ if (width < minWidth) {

if (height < minHeight) {
return false;
}
return true;

@@ -138,2 +143,3 @@ }

var minWidth = 500;
var minHeight = 300;

@@ -144,2 +150,6 @@ if (width < minWidth) {

if (height < minHeight) {
return false;
}
return true;

@@ -146,0 +156,0 @@ }

2

package.json
{
"name": "@denimlabs/media-validation-engine",
"version": "1.0.8",
"version": "1.0.9",
"description": "run validation rules against various ad network placements. Specific to facebook, instagram, messenger, single image, carousel images, and video formats.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -93,2 +93,3 @@ export function isImageFacebookFeedValid ({ width, height }) {

const minWidth = 500
const minHeight = 300

@@ -99,2 +100,6 @@ if (width < minWidth) {

if (height < minHeight) {
return false
}
return true

@@ -105,2 +110,3 @@ }

const minWidth = 500
const minHeight = 300

@@ -111,2 +117,5 @@ if (width < minWidth) {

if (height < minHeight) {
return false
}
return true

@@ -113,0 +122,0 @@ }

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