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

@putout/printer

Package Overview
Dependencies
Maintainers
1
Versions
663
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@putout/printer - npm Package Compare versions

Comparing version

to
1.52.1

9

lib/tokenize/is.js

@@ -79,1 +79,10 @@ 'use strict';

};
module.exports.satisfy = (conditions) => (path) => {
for (const condition of conditions) {
if (condition(path))
return true;
}
return false;
};

11

lib/tokenize/maybe/satisfy.js
'use strict';
const {satisfy} = require('../is');
module.exports = (plugin) => {

@@ -14,11 +15,5 @@ if (!plugin.afterSatisfy && !plugin.beforeSatisfy)

const createIf = (getConditions) => (path) => {
const createIf = (getConditions) => {
const conditions = getConditions?.() || [];
for (const condition of conditions) {
if (condition(path))
return true;
}
return false;
return satisfy(conditions);
};
{
"name": "@putout/printer",
"version": "1.52.0",
"version": "1.52.1",
"type": "commonjs",

@@ -5,0 +5,0 @@ "author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",

Sorry, the diff of this file is not supported yet