blob: a5ea294f8221984d0a991c9f88a719cb0d3cc4f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Copyright (c) 2020 The ZMK Contributors
*
* SPDX-License-Identifier: CC-BY-NC-SA-4.0
*/
import groups from "./data/groups.js";
export function getGroup(id) {
return groups[id] ?? null;
}
|