node_modules ignore

This commit is contained in:
2025-05-08 23:43:47 +02:00
parent e19d52f172
commit 4574544c9f
65041 changed files with 10593536 additions and 0 deletions

33
server/node_modules/@strapi/utils/dist/policy.js generated vendored Normal file
View File

@@ -0,0 +1,33 @@
'use strict';
var fp = require('lodash/fp');
const createPolicy = (options)=>{
const { name = 'unnamed', validator, handler } = options;
const wrappedValidator = (config)=>{
if (validator) {
try {
validator(config);
} catch (e) {
throw new Error(`Invalid config passed to "${name}" policy.`);
}
}
};
return {
name,
validator: wrappedValidator,
handler
};
};
const createPolicyContext = (type, ctx)=>{
return Object.assign({
is: fp.eq(type),
get type () {
return type;
}
}, ctx);
};
exports.createPolicy = createPolicy;
exports.createPolicyContext = createPolicyContext;
//# sourceMappingURL=policy.js.map