wmakeev/moysklad

View on GitHub
src/tools/isPlainObject.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
'use strict'

module.exports = function isPlainObject(value) {
  return Object.prototype.toString.call(value) === '[object Object]'
}