mirror of
https://github.com/recloudstream/website.git
synced 2024-08-15 03:18:45 +00:00
7 lines
139 B
JavaScript
7 lines
139 B
JavaScript
|
function node2slug(node) {
|
||
|
return node.fileAbsolutePath.replace(/^.+\/docs/g, "/docs")
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
node2slug: node2slug
|
||
|
}
|