Run details:
Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/113.0
Firefox 113
Ubuntu
Desktop
one year ago
Test name Executions per second
Lodash isPlainObject 2418328.2 Ops/sec
JS Type Check 185710160.0 Ops/sec
HTML Preparation code:
AخA
 
1
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.20/lodash.min.js"></script>
Script Preparation code:
 
var sampleObject = {
        "id": "0001",
        "type": "donut",
        "name": "Cake",
        "ppu": 0.55
    };
var isObject;
Tests:
  • Lodash isPlainObject

     
    isObject = _.isPlainObject(sampleObject);
  • JS Type Check

     
    isObject = typeof sampleObject === 'object' && sampleObject != null;