UNPKG

lapras

Version:

A React library to create guided walkthroughs and tours

16 lines (15 loc) 351 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); function getTarget(t) { let el = null; if (t) { if (typeof t === 'string') { el = document.querySelector(t) || el; } else if (t.nodeType === 1) { el = t; } } return el; } exports.getTarget = getTarget;