hotfix: docs build (#198)

* fix: build

* fix: build

* fix: build

* fix: build
This commit is contained in:
Sebastian Rindom
2021-03-10 16:15:06 +01:00
committed by GitHub
parent 82d2c352b2
commit 1e5a1398d8
20 changed files with 12875 additions and 328 deletions
+9
View File
@@ -0,0 +1,9 @@
export const deref = (path, spec) => {
let cleanDets = spec
for (const part of path) {
if (part === "#") continue
cleanDets = cleanDets[part]
}
return cleanDets
}