JSPM

lacona-util-fulltext

0.2.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 11
  • Score
    100M100P100Q41522F
  • License MIT

Take lacona output and generate a simple string

Package Exports

  • lacona-util-fulltext

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 (lacona-util-fulltext) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

lacona-util-fulltext

Travis Coverage Status

Take lacona output and generate a simple string.

Useful for passing to lacona-addon-* functions.

Given this input:

{
    "match": [
        {"string": "a"},
        {"string": " "}
    ],
    "suggestion": {
        "charactersComplete": 0,
        "words": [
            {"string": "b"}
        ]
    },
    "completion": [
        {"string": " "},
        {"string": "c"}
    ]
}

Generate this output:

"a b c"