mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
11 lines
272 B
JavaScript
Vendored
11 lines
272 B
JavaScript
Vendored
"use strict";
|
|
|
|
exports.__esModule = true;
|
|
exports.default = qsa;
|
|
var toArray = Function.prototype.bind.call(Function.prototype.call, [].slice);
|
|
|
|
function qsa(element, selector) {
|
|
return toArray(element.querySelectorAll(selector));
|
|
}
|
|
|
|
module.exports = exports["default"]; |