1.0.1 • Published 5 years ago

autocomplete-string v1.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

autocomplete-string Build Status

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