Test name | Executions per second |
---|---|
Lodash isPlainObject | 1530104.4 Ops/sec |
JS Type Check | 1990652.4 Ops/sec |
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.20/lodash.min.js"></script>
var sampleObject = {
"id": "0001",
"type": "donut",
"name": "Cake",
"ppu": 0.55
};
var isObject;
isObject = _.isPlainObject(sampleObject);
isObject = sampleObject != null && sampleObject.constructor === Object;