Home Manual Reference Source

Overview

Installation

Can be managed using yarn, npm, or jspm.

yarn

yarn add @trie-data-structure/uncompressed-trie

npm

npm install @trie-data-structure/uncompressed-trie --save

jspm

jspm install npm:@trie-data-structure/uncompressed-trie

Usage

:warning: Depending on your environment, the code may require regeneratorRuntime to be defined, for instance by importing regenerator-runtime/runtime.

First, require the polyfill at the entry point of your application

await import('regenerator-runtime/runtime.js');
// or
import 'regenerator-runtime/runtime.js';

Then, import the library where needed

const {Trie, ArrayNode, ObjectNode} = await import('@trie-data-structure/uncompressed-trie');
// or
import {Trie, ArrayNode, ObjectNode} from '@trie-data-structure/uncompressed-trie';

Examples

More examples in the test files.