mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-09 23:27:51 +00:00
9 lines
275 B
JavaScript
9 lines
275 B
JavaScript
/**
|
|
* Checks if the target is the same as the provided element of that the element
|
|
* contains the target. Returns true is this is the case.
|
|
*
|
|
* @returns boolean
|
|
*/
|
|
export const isElement = (element, target) => {
|
|
return element === target || element.contains(target)
|
|
}
|