Files
elasticsearch-js/docs/doc_examples/1659420311d907d9fc024b96f4150216.asciidoc
2024-07-29 17:10:05 -05:00

19 lines
382 B
Plaintext

// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.indices.analyze({
tokenizer: "whitespace",
filter: [
{
type: "length",
min: 0,
max: 4,
},
],
text: "the quick brown fox jumps over the lazy dog",
});
console.log(response);
----