helpers/packages/is/index.js

4 lines
145 B
JavaScript
Raw Normal View History

2024-04-27 22:44:24 +03:00
export const is = (obj, type) => {
return Object.prototype.toString.call(obj).slice(8, -1) === type && obj !== undefined && obj !== null;
};