lodash trim vs native replace
Date tested:
5 months ago
User agent:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36
Test name
Executions per second
lodash trim
4733930.0 Ops/sec
native replace
7309125.0 Ops/sec
Benchmark definition (click to collapse):
HTML Preparation code:
<script src='https://cdnjs.cloudflare.com/ajax/libs/lodash-fp/0.10.4/lodash-fp.js'></script>
Script Preparation code:
var test = ' tom hanks '
Tests:
lodash trim
_.trim(test, ' ,')
native replace
test.replace(/(^[,\s]+)|([,\s]+$)/g, "")
Open this result on MeasureThat.net