wmakeev/moysklad

View on GitHub
src/tools/isSimpleValue.js

Summary

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

module.exports = function isSimpleValue(value) {
  return typeof value !== 'object' || value instanceof Date || value === null
}