diff options
| author | Asko Nõmm <asko@nmm.ee> | 2025-01-12 04:22:10 +0200 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2025-01-12 04:22:10 +0200 |
| commit | 1a908bb7aae140b5c556c6b4e903b803820429dc (patch) | |
| tree | 58626aa0382fd3f66247d5ac9bbb150d93321239 /src/serializers/to_object.ts | |
bump
Diffstat (limited to 'src/serializers/to_object.ts')
| -rw-r--r-- | src/serializers/to_object.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/serializers/to_object.ts b/src/serializers/to_object.ts new file mode 100644 index 0000000..eb21d2f --- /dev/null +++ b/src/serializers/to_object.ts @@ -0,0 +1,7 @@ +import {Matter, Serializer} from '../flatmatter.ts'; + +export default class ToObject implements Serializer { + serialize(parsedConfig: Matter): Matter { + return parsedConfig; + } +}
\ No newline at end of file |
