Skip to content

Commit

Permalink
Merge branch 'master' into fix/register-hooks-function
Browse files Browse the repository at this point in the history
  • Loading branch information
thebedigupta authored Oct 9, 2024
2 parents 954d70e + 2feefdc commit ad5669e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/nunjucks-filters/src/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const customFilters = require('./customFilters');
const lodashFilters = require('./lodashFilters');

module.exports = Object.assign({}, lodashFilters, customFilters);
module.exports = {
...lodashFilters,
...customFilters};

0 comments on commit ad5669e

Please sign in to comment.