wix-incubator / react-templates

Light weight templates for react
https://wix.github.io/react-templates
MIT License
2.82k stars 207 forks source link

how to use templates with immutable.js ??? #194

Open linushp opened 7 years ago

linushp commented 7 years ago

I know , I just need to rewrite the lodash map function .like this 👍

_.map = function(m,i){ if(isImmutable){ ..... } }

nippur72 commented 7 years ago

I was just writing it :) ... also there is a PR in queue for having custom helpers (_.map)...

nippur72 commented 7 years ago

to clarify: the PR is #176 and the feature is discussed in #184. It allows to replace the default map function used by react-templates with a custom one. (So for example in your case you don't have to hack _.map() in lodash).