Hi,
I have encountered a situation where I need to override a property that has a function value with a property that has a string value generically. I was hoping to use isc.addProperties to do so but it does not seem to function as I would expect it to do so.
isc.addProperties({}, {test: function(){ return "this is wrong";}}, {test: "this is right"});
Results in an object that has the function stored at the key "test".
Could you please provide any advice on an alternative or a possible bug fix?
We are working with SNAPSHOT_v11.1d_2016-04-15/LGPL Deployment
Best,
Mitch
I have encountered a situation where I need to override a property that has a function value with a property that has a string value generically. I was hoping to use isc.addProperties to do so but it does not seem to function as I would expect it to do so.
isc.addProperties({}, {test: function(){ return "this is wrong";}}, {test: "this is right"});
Results in an object that has the function stored at the key "test".
Could you please provide any advice on an alternative or a possible bug fix?
We are working with SNAPSHOT_v11.1d_2016-04-15/LGPL Deployment
Best,
Mitch
Comment