method Buffer.includes
Usage in Deno
```typescript import { type Buffer } from "node:node__buffer.d.ts"; ```
Buffer.includes(): boolean
Equivalent to `buf.indexOf() !== -1`.
```js
import { Buffer } from 'node:buffer';
const buf = Buffer.from('this is a buffer');
console.log(buf.includes('this'));
// Prints: true
console.log(buf.includes('is'));
// Prints: true
console.log(buf.includes(Buffer.from('a buffer')));
// Prints: true
console.log(buf.includes(97));
// Prints: true (97 is the decimal ASCII value for 'a')
console.log(buf.includes(Buffer.from('a buffer example')));
// Prints: false
console.log(buf.includes(Buffer.from('a buffer example').slice(0, 8)));
// Prints: true
console.log(buf.includes('this', 4));
// Prints: false
```
Where to begin searching in `buf`. If negative, then offset is calculated from the end of `buf`.
optional
encoding: BufferEncoding = 'utf8'
If `value` is a string, this is its encoding.
boolean
`true` if `value` was found in `buf`, `false` otherwise.