konversi-pro
Version:
Konversi file TXT → CSV kompatibel dengan Bitwarden, Google, LastPass, KeePass, dll. + Web UI React.
26 lines (21 loc) • 751 B
JavaScript
import defaultTemplate from "./templates/default.js";
import bitwarden from "./templates/bitwarden.js";
import googlePasswords from "./templates/google-passwords.js";
import googleContacts from "./templates/google-contacts.js";
import lastpass from "./templates/lastpass.js";
import onepassword from "./templates/onepassword.js";
import keepass from "./templates/keepass.js";
import { parseTextToJSON, convertToCSV } from "./core/parser.js";
const templates = {
default: defaultTemplate,
bitwarden,
"google-passwords": googlePasswords,
"google-contacts": googleContacts,
lastpass,
onepassword,
keepass,
};
export function getTemplate(name) {
return templates[name] || templates.default;
}
export { parseTextToJSON, convertToCSV };