All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
export function isRef(obj) {
|
|
return (
|
|
// eslint-disable-next-line no-prototype-builtins
|
|
obj !== null &&
|
|
typeof obj === 'object' &&
|
|
Object.prototype.hasOwnProperty.call(obj, 'current'));
|
|
}
|