backend.js 296 B

123456789101112
  1. const test_all = async () => {
  2. const libtranslate = require("../source/core.js");
  3. const flat = await new libtranslate.
  4. loader("test/flat.json", true).
  5. load();
  6. console.log(flat.get("simple").text);
  7. console.log(flat.get("this is simple phrase.").text);
  8. }
  9. test_all();