# core/assets/walk.assets.ts

> 8 lines of code and 4 definitions.

Tree: Site tree
Language: typescript
Layer: infrastructure
Canonical: https://banes-lab.com/anatomy/tree#file-core-assets-walk-assets-ts
Source text: https://banes-lab.com/assets/sources/source.54f170c99425d089e59ce489df43a64cf9e9be7a3b530eae67fd1bf95fcb8905.generated.txt

## Definitions

- `sourceLocation` (lexical_declaration, line 9, exported)
- `WALK_ROOT` (lexical_declaration, line 1, exported)
- `SOURCE_ROOT` (lexical_declaration, line 3, exported)
- `walkLocation` (lexical_declaration, line 5, exported)

## Used by

- [presentation/renderers/markdown.renderer.ts](https://banes-lab.com/source/tree/presentation/renderers/markdown.renderer.ts.md)
- [presentation/renderers/source.renderer.ts](https://banes-lab.com/source/tree/presentation/renderers/source.renderer.ts.md)

## Source

```typescript
export const WALK_ROOT = "/assets/walks/";

export const SOURCE_ROOT = "/assets/sources/";

export const walkLocation = function walkLocation(name: string): string {
    return WALK_ROOT + name;
};

export const sourceLocation = function sourceLocation(name: string): string {
    return SOURCE_ROOT + name;
};
```
