Files
old-svijetlastrana-front/public/bower_components/moment/src/lib/utils/is-object.js
2018-05-07 16:07:00 +02:00

4 lines
116 B
JavaScript
Executable File

export default function isObject(input) {
return Object.prototype.toString.call(input) === '[object Object]';
}