1.0.8 • Published 4 years ago

new-hope v1.0.8

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

new-hope logo

Esperanto tokenizer written in TypeScript

npm version StackShare


Esperanto?

Esperanto is a constructed language created by L. L. Zamenhof in 1887. Find out more here and check out the great Duolingo Esperanto Course.


Usage

ES6/TypeScript style import
import {split, tokenize} from "new-hope";

const words = split("Mi parolas Esperanton.");
const tokens = tokenize(words);
Node.js style import
const newHope = require("new-hope");

const words = newHope.split("Mi parolas Esperanton.");
const tokens = newHope.tokenize(words);
AMD style import
require(["new-hope"], (newHope) => {
  const words = newHope.split("Mi parolas Esperanton.");
  const tokens = newHope.tokenize(words);
});
1.0.8

4 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago