Run details:
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0
Firefox 78
Linux
Desktop
4 years ago
Test name Executions per second
Lodash isPlainObject 3298341.8 Ops/sec
JS Type Check 76209344.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 = sampleObject != null && sampleObject.constructor === Object;