UNPKG
@react-gnome/core
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
## Getting Started
@react-gnome/core
/
dist
/
esm
/
utils
/
app-id-to-path.mjs
8 lines
(7 loc)
•
127 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
// src/utils/app-id-to-path.ts
var
appIDToPath
= (
appID
) => {
return
appID.
replace
(
/\./g
,
"/"
); };
export
{ appIDToPath };