mirror of
https://github.com/status-im/consul.git
synced 2025-02-18 08:36:46 +00:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
export default function (doc = document) {
|
|
return function (sel, context = doc) {
|
|
return context.querySelectorAll(sel);
|
|
};
|
|
}
|