autocomplete-string
v1.0.1
Published
Pure javascript module which returns an object with autocomplete informations by a given string an suggestions array
Downloads
3
Maintainers
Readme
autocomplete-string
Pass an array of options and an input string and get a suggestion and a completion string
Install
$ npm install autocomplete-string
Usage
import autocomplete from 'autocomplete-string';
autocomplete('foo', ['hello', 'FoobaR', 'foobaz', 'world']);
/*
{
completion: 'baR',
suggestion: 'Foobar',
suggestionIndex: 1
}
*/
API
autocomplete(input, [list])
Returns the first path found (by respecting the order) or undefined
if none could be found.
input
Type: string
HeyHa
list
Type: array
Foobar
License
MIT © entwicklerstube