9 lines
307 B
JavaScript
9 lines
307 B
JavaScript
export const isFunction = obj => !!(obj && obj.constructor && obj.call && obj.apply);
|
|
|
|
export const inInputDOMNode = e => e && e.target && ['INPUT', 'SELECT', 'TEXTAREA'].includes(e.target.nodeName);
|
|
|
|
export const getDimensions = (node = {}) => ({
|
|
width: node.offsetWidth,
|
|
height: node.offsetHeight
|
|
});
|