Merge mintaka lib

This commit is contained in:
2024-03-06 19:39:31 -03:00
parent b4d074420a
commit c6136b6e21
15 changed files with 747 additions and 23 deletions

15
src/toml/index.ts Normal file
View File

@ -0,0 +1,15 @@
// Copyright (c) Tribufu. All Rights Reserved.
// SPDX-License-Identifier: MIT
import toml from "toml";
export class TomlSerializer {
/**
* Parse toml string to object.
* @param toml
* @returns {any}
*/
public static fromString(tomlString: string): any {
return toml.parse(tomlString);
}
}