You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You should avoid closures inside of the jsonPath()-function in the js-version
in order to improve performance.
Example:
(function() {
function doSomething() {};
function jsonPath() {
doSomething();
};
})();
is faster than
function jsonPath() {
function doSomething() {};
doSomething();
}
because those functions have to be created by the js-interpreter on every call
to jsonPath.
Original issue reported on code.google.com by Uli.He...@googlemail.com on 31 Oct 2010 at 3:40
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
Uli.He...@googlemail.com
on 31 Oct 2010 at 3:40The text was updated successfully, but these errors were encountered: