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

30
server/node_modules/@strapi/utils/dist/policy.mjs generated vendored Normal file
View File

@@ -0,0 +1,30 @@
import { eq } from '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: eq(type),
get type () {
return type;
}
}, ctx);
};
export { createPolicy, createPolicyContext };
//# sourceMappingURL=policy.mjs.map