mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 21:44:51 +00:00
3 lines
119 B
JavaScript
Vendored
3 lines
119 B
JavaScript
Vendored
export default function isObject (variable) {
|
|
return Object.prototype.toString.call(variable) === '[object Object]'
|
|
} |