2024-01-01 21:11:32 +00:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-11-29 06:01:21 +00:00
|
|
|
// This module is browser compatible.
|
|
|
|
|
2024-04-16 06:59:52 +00:00
|
|
|
/**
|
|
|
|
* Returns `true` if the prefix array appears at the start of the source array,
|
|
|
|
* `false` otherwise.
|
2022-11-29 06:01:21 +00:00
|
|
|
*
|
2024-04-16 06:59:52 +00:00
|
|
|
* The complexity of this function is `O(prefix.length)`.
|
2022-11-29 06:01:21 +00:00
|
|
|
*
|
2024-04-16 06:59:52 +00:00
|
|
|
* @param source Source array to check.
|
|
|
|
* @param prefix Prefix array to check for.
|
|
|
|
* @returns `true` if the prefix array appears at the start of the source array,
|
|
|
|
* `false` otherwise.
|
|
|
|
*
|
|
|
|
* @example Basic usage
|
2022-11-29 06:01:21 +00:00
|
|
|
* ```ts
|
2024-04-29 02:57:30 +00:00
|
|
|
* import { startsWith } from "@std/bytes/starts-with";
|
refactor(assert,async,bytes,cli,collections,crypto,csv,data-structures,datetime,dotenv,encoding,expect,fmt,front-matter,fs,html,http,ini,internal,io,json,jsonc,log,media-types,msgpack,net,path,semver,streams,testing,text,toml,ulid,url,uuid,webgpu,yaml): import from `@std/assert` (#5199)
* refactor: import from `@std/assert`
* update
2024-06-30 08:30:10 +00:00
|
|
|
* import { assertEquals } from "@std/assert";
|
2024-04-16 06:59:52 +00:00
|
|
|
*
|
2022-11-29 06:01:21 +00:00
|
|
|
* const source = new Uint8Array([0, 1, 2, 1, 2, 1, 2, 3]);
|
|
|
|
* const prefix = new Uint8Array([0, 1, 2]);
|
2024-04-16 06:59:52 +00:00
|
|
|
*
|
2024-05-08 06:18:26 +00:00
|
|
|
* assertEquals(startsWith(source, prefix), true);
|
2022-11-29 06:01:21 +00:00
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
export function startsWith(source: Uint8Array, prefix: Uint8Array): boolean {
|
2024-05-19 02:10:00 +00:00
|
|
|
if (prefix.length > source.length) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-03-14 11:18:00 +00:00
|
|
|
for (let i = 0; i < prefix.length; i++) {
|
2022-11-29 06:01:21 +00:00
|
|
|
if (source[i] !== prefix[i]) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|