Javascript rendering transform optimization

I’m developing a game for a mobile browser.
When node count is high, huge performance lost in CCSGNodeBaseRenderCmd.updateTransform. Many nodes have rotation.
I suppose that Math.sin & Math.cos is the slowest part.

Could we have an option in Node (and global option) to have discrete steps for sin/cos/tan and use sin/cos/tan value tables?