UNPKG

@uploadcare/blocks

Version:

Building blocks for Uploadcare products integration

9 lines (8 loc) 252 B
/** * This will check if the execution environment is a short code snippet, and not the complete HTML-document * * @param {Function} cb */ export function ifRef(cb) { !document.querySelector('meta') && !document.querySelector('title') && cb(); }