-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstarts-with.ts
40 lines (32 loc) · 893 Bytes
/
starts-with.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import type { PrototypeStruct } from '../index.js';
interface StartsWith<T> {
startsWith(needle: T[]): boolean;
}
export const startsWith: PrototypeStruct = {
label: 'startsWith',
fn: function arrayStartsWith<T>(needle: T[]): boolean {
const ctx = this as unknown as T[];
if (!Array.isArray(needle)) {
throw new TypeError(`Expect 'needle' to be an array`);
}
const ctxLen = ctx.length;
const len = needle.length;
if (!len) return true;
if (!ctxLen || ctxLen < len) return false;
// A B OR AND
// 0 0 0 0
// 0 1 1 0
// 1 0 1 0
// 1 1 1 1
let matched = 1;
for (let i = 0; i < len; i += 1) {
const val = needle[i];
// tslint:disable-next-line: no-bitwise
matched &= Number(val === ctx[i]);
}
return Boolean(matched);
},
};
declare global {
interface Array<T> extends StartsWith<T> {}
}