Calling strictEncodeURIComponent with some specific values cause an error in FF 3.6.
strictEncodeURIComponent('abcdefg()') // -> Error: invalid string escape mask 8
I hotfixed this by replacing the escape-function that is passed into replace with:
function(val) {return escape(val);}