Package Exports
- trie-pos-list
- trie-pos-list/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (trie-pos-list) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
trie-pos-list
get trie position list { position: keyword[] }
npm install trie-pos-list
import triePosList, { allPosMax } from 'trie-pos-list';
import equals = require('deep-eql');
let words = 'yasherhs';
/**
* @see https://github.com/bluelovers/aho-corasick
*/
let positions = {
'2': ['she'],
'3': ['h', 'he', 'her'],
'6': ['h']
};
let ret1 = triePosList(words, positions);
console.log(ret1);
/*
{ '0': [ 'ya' ],
'2': [ 's', 'she', 'sher' ],
'3': [ 'h', 'he', 'her' ],
'4': [ 'er' ],
'5': [ 'r' ],
'6': [ 'h' ],
'7': [ 's' ] }
*/
// more
let ret2 = allPosMax(words, ret1);
console.log(ret2);
/*
{ '0': [ 'y', 'ya', 'yas', 'yash', 'yashe', 'yasher', 'yasherh' ],
'1': [ 'a', 'as', 'ash', 'ashe', 'asher', 'asherh' ],
'2': [ 's', 'sh', 'she', 'sher', 'sherh' ],
'3': [ 'h', 'he', 'her', 'herh' ],
'4': [ 'e', 'er', 'erh' ],
'5': [ 'r', 'rh' ],
'6': [ 'h' ],
'7': [ 's' ] }
*/
let ret3 = allPosMax(words, positions);
console.log(ret3);
console.log(`ret2 same as ret3:`, equals(ret2, ret3));