Tests:
  • regex

    AخA
     
    var result = 0;
    FILTERS = /\s*\|\s*([^\|\s:}]*)(?::((?:(?:[^\|\s,}]*),?)+))?\s*/g;
    var str = "{{value|filter:arg1,arg2|otherFilter}}";
    for (var i=0; i < 1000; i++) {
      typeof str.match(FILTERS) !== null ? result += 1 : result += 0;
    }
  • indexOf

     
    var result = 0;
    FILTERS = /\s*\|\s*([^\|\s:}]*)(?::((?:(?:[^\|\s,}]*),?)+))?\s*/g;
    var str = "{{value|filter:arg1,arg2|otherFilter}}";
    for (var i=0; i < 1000; i++) {
      typeof str.indexOf('|') >= 0 ? result += 1 : result += 0;
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    regex
    indexOf

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 years ago)
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
Chrome 60 on Mac OS X 10.11.6
View result in a separate tab
Test name Executions per second
regex 2413.0 Ops/sec
indexOf 354963.1 Ops/sec