@putout/printer
Advanced tools
Comparing version
@@ -79,1 +79,10 @@ 'use strict'; | ||
}; | ||
module.exports.satisfy = (conditions) => (path) => { | ||
for (const condition of conditions) { | ||
if (condition(path)) | ||
return true; | ||
} | ||
return false; | ||
}; |
'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
85990
0.22%2319
0.17%