@intor/reader-toml
v0.1.0
Published
TOML reader for intor.
Readme
TOML reader for intor.
Installation
# npm
npm install @intor/reader-toml
# yarn
yarn add @intor/reader-toml
# pnpm
pnpm add @intor/reader-tomlExample
Setup
import { tomlReader } from "@intor/reader-toml";
const { t } = await getTranslator(intorConfig, {
locale,
readers: { toml: tomlReader },
});Message file
messages/en/example.toml
text = "Coding is fun"Usage
t("example.text");
// → "Coding is fun"