UNPKG

258 BJavaScriptView Raw
1import predicates from './predicates.js';
2const modifiers = (object) => {
3 Object.defineProperties(object, {
4 optional: {
5 get: () => predicates({}, { optional: true }),
6 },
7 });
8 return object;
9};
10export default modifiers;