Skip to main content

@std/bytes@0.215.0

latest
Works with
It is unknown whether this package works with Browsers, Deno, Node.js, Cloudflare Workers, Bun
It is unknown whether this package works with Browsers
It is unknown whether this package works with Deno
It is unknown whether this package works with Node.js
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Bun
JSR Score70%
Published2 years ago (0.215.0)
function indexOfNeedle
indexOfNeedle(
source: Uint8Array,
needle: Uint8Array,
start?
): number

Returns the index of the first occurrence of the needle array in the source array, or -1 if it is not present.

A start index can be specified as the third argument that begins the search at that given index. The start index defaults to the start of the array.

The complexity of this function is O(source.length * needle.length).

import { indexOfNeedle } from "@std/bytes/index_of_needle";
const source = new Uint8Array([0, 1, 2, 1, 2, 1, 2, 3]);
const needle = new Uint8Array([1, 2]);
console.log(indexOfNeedle(source, needle)); // 1
console.log(indexOfNeedle(source, needle, 2)); // 3

Parameters

Return Type

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@std/bytes

Import symbol

import { indexOfNeedle } from "@std/bytes";
or

Import directly with a jsr specifier

import { indexOfNeedle } from "jsr:@std/bytes";