🚀 Socket Launch Week 🚀 Day 2: Introducing Repository Labels and Security Policies.Learn More
Socket
Sign inDemoInstall
Socket

trie-obj

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

trie-obj

simple trie implementation based on JS proxies

1.0.1
latest
npm
Version published
Maintainers
1
Created
Source

trie-obj

a fun to use implementation of the trie data structure

not optimized for common suffixes, etc. Feel free to submit PRs

Usage

const Trie = require('trie-obj')
const trie = Trie.create()
// set key->value mappings as you would on a regular object
trie.hello = 'world'
trie.helicon = 'another world'
// lookup by prefix
console.log(trie.he)
// ['world', 'another world']

console.log(trie.hello)
// ['world']

// delete as you would from a regular object
delete trie.helicon
console.log(trie.he)
// ['world']

Keywords

trie

FAQs

Package last updated on 17 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts