-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathis.ts
1015 lines (941 loc) · 28.7 KB
/
is.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* Conditional utilities.
*/
import '#@initialize.ts';
import * as $standalone from '#@standalone/index.ts';
import { $app, $env, $error, $obj, $preact, type $type } from '#index.ts';
let structuredCloneableObjectTags: string[];
const numericIntegerRegExp = /^(?:0|-?[1-9][0-9]*)$/u;
const numericFloatRegExp = /^(?:0|-?[1-9][0-9]*)?\.[0-9]+$/u;
/**
* Defines types.
*/
export type IsErrorCauseOptions = {
type?: 'error' | 'string' | 'object';
};
/**
* Checks if a value is NaN.
*
* @param value Value to consider.
*
* @returns True if value is NaN.
*/
export const nan = (value: unknown): value is typeof NaN => {
return Number.isNaN(value);
};
/**
* Checks if a value is null or undefined.
*
* @param value Value to consider.
*
* @returns True if value is null or undefined.
*/
export const nul = (value: unknown): value is null | undefined => {
return null === value || undefined === value;
};
/**
* Checks if a value is null, undefined, or NaN.
*
* @param value Value to consider.
*
* @returns True if value is null, undefined, or NaN.
*/
export const nil = (value: unknown): value is null | undefined | typeof NaN => {
return null === value || undefined === value || nan(value);
};
/**
* Checks if a value is null.
*
* @param value Value to consider.
*
* @returns True if value is null.
*/
const _null = (value: unknown): value is null => {
return null === value;
}; // Weird behavior by import organizer here.
// This line prevents import organizer from shifting `null` export to top.
export { _null as null }; // Must be exported as alias.
/**
* Checks if a value is undefined.
*
* @param value Value to consider.
*
* @returns True if value is undefined.
*/
const _undefined = (value: unknown): value is undefined => {
return undefined === value;
};
export { _undefined as undefined }; // Must be exported as alias.
/**
* Checks if a value is empty.
*
* Emptiness is checked in this order:
*
* - A value of any type is empty when it’s falsy.
* - Primitive values are empty only when they are falsy.
* - Sets and maps are empty when they have a `size` of zero.
* - An array buffer is empty when it has a `byteLength` of zero.
* - Arrays, typed arrays, and buffers are empty when they have a `length` of zero.
* - Iterables are empty when they have no iterable values; i.e., effectively a length of zero.
* - Async iterables are always considered not to be empty, as they require `for await` to confirm.
* - All other object types are empty when their own enumerable keys/symbols have a length of zero.
*
* Other important things to consider:
*
* - `'0'` is not falsy, so not empty. {@see emptyOrZero()} is a variant that considers `'0'` empty.
* - Symbols are a primitive value, and therefore only empty when falsy. They are never falsy, so never empty.
* - Functions can be empty, and often are empty. Functions of all kinds are treated like any other object; i.e.,
* functions are empty when their own enumerable keys/symbols have a length of zero.
*
* When to use, and not use:
*
* - Use when testing emptiness of a value with an unknown type, or when testing emptiness of object types.
* - Primitive values are empty only when they are falsy. Therefore, there’s no need to use this utility when testing
* primitive types. Instead, simply use a falsy `if(!value)` check. It’s faster and easier.
*
* @param value Value to consider.
*
* @returns True if value is empty.
*
* @note See: <https://o5p.me/Mg1CQA> for falsy details.
* @note See: <https://o5p.me/iYUYVK> for iterable details.
*/
export const empty = (value: unknown): boolean => {
if (!value) return true; // Empty when falsy.
if (!object(value) /* Primitive. */) {
return !value; // Empty when falsy.
}
if (set(value) || map(value)) {
return 0 === value.size;
}
if (arrayBuffer(value)) {
return 0 === value.byteLength;
}
if (array(value) || typedArray(value) || buffer(value)) {
return 0 === value.length;
}
if (iterable(value)) {
for (const unusedꓺ of value) return false;
return true; // Empty otherwise.
}
if (asyncIterable(value)) {
return false; // Never considered empty.
}
return 0 === $obj.keysAndSymbols(value).length;
};
/**
* Checks if a value is _not_ empty.
*
* @param value Value to consider.
*
* @returns True if value is _not_ empty.
*
* @see {empty()} for further details.
*/
export const notEmpty = (value: unknown): boolean => {
return !empty(value);
};
/**
* Checks if a value is empty, or `'0'`.
*
* @param value Value to consider.
*
* @returns True if value is empty, or `'0'`.
*
* @see {empty()} for further details.
*/
export const emptyOrZero = (value: unknown): boolean => {
return '0' === value || empty(value);
};
/**
* Checks if a value is _not_ empty, or `'0'`.
*
* @param value Value to consider.
*
* @returns True if value is _not_ empty, or `'0'`.
*
* @see {emptyOrZero()} for further details.
*/
export const notEmptyOrZero = (value: unknown): boolean => {
return !emptyOrZero(value);
};
/**
* Checks if value is a primitive.
*
* Exact inverse of {@see object()}.
*
* The `!object()` check is used to ensure consistency and help with forward compatibility; i.e., any value that is not
* an object, is a primitive. Thus, if JavaScript adds new primitives in the future, `!object()` will catch those.
*
* As of early 2023, `null`, `undefined`, `boolean`, `number`, `bigint`, `string`, and `symbol` are all primitive types.
* Non-null `object` and `function` types are not primitives, which is what {@see object()} checks for in the inverse.
*
* @param value Value to consider.
*
* @returns True if value is primitive.
*
* @note Primitives are always passed by value in JavaScript.
* @note See: <https://o5p.me/QGfHu9> regarding primitive types.
*/
export const primitive = (value: unknown): value is $type.Primitive => {
return !object(value); // Not an object|function.
};
/**
* Checks if value is a boolean.
*
* @param value Value to consider.
*
* @returns True if value is a boolean.
*/
export const boolean = (value: unknown): value is boolean => {
return 'boolean' === typeof value;
};
/**
* Checks if value is a number.
*
* @param value Value to consider.
*
* @returns True if value is a number.
*
* @note Returns true for `-Infinity`, `Infinity`, which are also numbers.
* @note Returns false for `NaN`, which is technically a number, but not really.
* @note Returns false for bigint values, as those are not numbers.
*/
export const number = (value: unknown): value is number => {
return 'number' === typeof value && !nan(value);
};
/**
* Checks if value is a bigint.
*
* @param value Value to consider.
*
* @returns True if value is a bigint.
*
* @note Returns false for `-Infinity`, `Infinity`, which are not bigints.
* @note Returns false for `NaN`, which is technically a number, but not a bigint.
* @note Returns false for number values, as those are not bigints.
*/
export const bigint = (value: unknown): value is bigint => {
return 'bigint' === typeof value;
};
/**
* Checks if value is an integer.
*
* @param value Value to consider.
*
* @returns True if value is an integer.
*
* @note Returns false for `-Infinity`, `Infinity`, which are not integers.
* @note Returns false for `NaN`, which is technically a number, but not an integer.
* @note Returns true for numbers ending in `.0`, which are actually integers.
* @note Returns true in some other edge cases; {@see https://o5p.me/MFVotL}.
*/
export const integer = (value: unknown): value is number => {
return Number.isInteger(value);
};
/**
* Checks if value is a float.
*
* @param value Value to consider.
*
* @returns True if value is a float.
*
* @note Returns false for `-Infinity`, `Infinity`, which are not floats.
* @note Returns false for `NaN`, which is technically a number, but not a float.
* @note Returns false for numbers ending in `.0`, which are actually integers.
*/
export const float = (value: unknown): value is number => {
return finite(value) && value % 1 !== 0;
};
/**
* Checks if value is finite.
*
* @param value Value to consider.
*
* @returns True if value is finite.
*
* @note Returns false for `-Infinity`, `Infinity`, which are not finites.
* @note Returns false for `NaN`, which is technically a number, but not finite.
*/
export const finite = (value: unknown): value is number => {
return Number.isFinite(value);
};
/**
* Checks if value is numeric.
*
* @param value Value to consider.
* @param type Optional numeric condition.
*
* @returns True if value is numeric and meets the optional `type` condition.
*
* @note Returns true for `-Infinity`, `Infinity`, which are also numbers.
* @note Returns false for `NaN`, which is technically a number type, but not numeric.
* @note Returns false for bigint values, as those are not numbers.
*/
export const numeric = (value: unknown, type?: 'integer' | 'negativeInteger' | 'positiveInteger' | 'safeInteger' | 'safeArrayKey' | 'float'): value is number | string => {
switch (type) {
case 'integer':
case 'negativeInteger':
case 'positiveInteger': {
const is = integer(value) || (string(value) && numericIntegerRegExp.test(value) && integer(Number(value)));
if (is && 'negativeInteger' === type) return Number(value) < 0;
if (is && 'positiveInteger' === type) return Number(value) > 0;
return is; // e.g., Not an integer, or when type is `integer`.
}
case 'safeInteger':
return safeInteger(value) || (string(value) && numericIntegerRegExp.test(value) && safeInteger(Number(value)));
case 'safeArrayKey':
return safeArrayKey(value) || (string(value) && numericIntegerRegExp.test(value) && safeArrayKey(Number(value)));
case 'float':
return float(value) || (string(value) && numericFloatRegExp.test(value) && number(Number(value)));
}
return number(value) || (string(value) && (numericIntegerRegExp.test(value) || numericFloatRegExp.test(value)) && number(Number(value)));
};
/**
* Checks if value is a string.
*
* @param value Value to consider.
*
* @returns True if value is a string.
*/
export const string = (value: unknown): value is string => {
return 'string' === typeof value;
};
/**
* Checks if value is a symbol.
*
* @param value Value to consider.
*
* @returns True if value is a symbol.
*/
export const symbol = (value: unknown): value is symbol => {
return 'symbol' === typeof value;
};
/**
* Checks if value is a prototype.
*
* @param value Value to consider.
*
* @returns True if value is a prototype.
*/
export const proto = $standalone.$isꓺproto;
/**
* Checks if value is an object.
*
* Exact inverse of {@see primitive()}.
*
* @param value Value to consider.
* @param opts Options. Default is `{}`.
*
* @returns True if value is an object.
*
* @note This also returns true for arrays.
* @note This also returns true for functions.
* @note This also returns true for async functions.
* @note This also returns true for generator functions.
* @note This also returns true for async generator functions.
* @note This also returns true for proxied functions, sync or async.
* @note This also returns true for memoized functions.
*/
export const object = $standalone.$isꓺobject;
/**
* Checks if value is a plain object.
*
* @param value Value to consider.
*
* @returns True if value is a plain object.
*/
export const plainObject = <Type>(value: $type.OfObject<Type> | unknown): value is $type.OfObject<Type> => {
return object(value) && objectTag(value, 'Object');
};
/**
* Checks if a value is any kind of function.
*
* @param value Value to consider.
*
* @returns True if value is ny kind of function.
*
* @note This also returns true for async functions.
* @note This also returns true for generator functions.
* @note This also returns true for async generator functions.
* @note This also returns true for proxied functions, sync or async.
* @note This also returns true for memoized and curried sync or async functions.
*/
const _function = $standalone.$isꓺfunction;
export { _function as function }; // Must be exported as alias.
/**
* Checks if a value is any kind of async function.
*
* @param value Value to consider.
*
* @returns True if value is any kind of async function.
*
* @note This also returns true for async generator functions.
* @note This also returns true for proxied async functions.
* @note This also returns true for memoized and curried async functions.
*/
export const asyncFunction = $standalone.$isꓺasyncFunction;
/**
* Checks if value is a function arguments object.
*
* @param value Value to consider.
*
* @returns True if value is a function arguments object.
*/
export const fnArguments = (value: unknown): value is IArguments => {
return object(value) && objectTag(value, 'Arguments');
};
/**
* Checks if a value is a promise.
*
* @param value Value to consider.
*
* @returns True if value is a promise.
*/
export const promise = <Type>(value: $type.OfPromise<Type> | Type): value is $type.OfPromise<Type> => {
return value instanceof Promise;
};
/**
* Checks if value is a set.
*
* @param value Value to consider.
*
* @returns True if value is a set.
*/
export const set = <Type>(value: $type.OfSet<Type> | Type): value is $type.OfSet<Type> => {
return value instanceof Set;
};
/**
* Checks if value is a map.
*
* @param value Value to consider.
*
* @returns True if value is a map.
*/
export const map = <Type>(value: $type.OfMap<Type> | Type): value is $type.OfMap<Type> => {
return value instanceof Map;
};
/**
* Checks if value is an array buffer.
*
* @param value Value to consider.
*
* @returns True if value is an array buffer.
*/
export const arrayBuffer = (value: unknown): value is ArrayBuffer => {
return value instanceof ArrayBuffer;
};
/**
* Checks if value is an array.
*
* @param value Value to consider.
*
* @returns True if value is an array.
*/
export const array = $standalone.$isꓺarray;
/**
* Checks if value is a typed array.
*
* @param value Value to consider.
*
* @returns True if value is a typed array.
*
* @note See: <https://o5p.me/xfQ9CB> for details.
*/
export const typedArray = (value: unknown): value is $type.TypedArray => {
return ArrayBuffer.isView(value) && !dataView(value);
};
/**
* Checks if value is a data view.
*
* @param value Value to consider.
*
* @returns True if value is a data view.
*/
export const dataView = (value: unknown): value is DataView => {
return value instanceof DataView;
};
/**
* Checks if value is a buffer.
*
* @param value Value to consider.
*
* @returns True if value is a buffer.
*/
export const buffer = (value: unknown): value is Buffer => {
return $env.isNode() && Buffer.isBuffer(value);
};
/**
* Checks if value is a blob.
*
* @param value Value to consider.
*
* @returns True if value is a blob.
*/
export const blob = (value: unknown): value is Blob => {
return value instanceof Blob;
};
/**
* Checks if value is a readable stream.
*
* @param value Value to consider.
*
* @returns True if value is a readable stream.
*/
export const readableStream = (value: unknown): value is ReadableStream => {
return value instanceof ReadableStream;
};
/**
* Checks if value is an {@see Error}.
*
* @param value Value to consider.
*
* @returns True if value is an {@see Error}.
*/
export const error = (value: unknown): value is Error => {
return value instanceof Error;
};
/**
* Checks if value is an {@see Error} code.
*
* Error codes are {@see Error} instances containing a message that’s exactly 8 alphanumeric bytes in length; i.e.,
* merely an error code. A few examples: `yYxSWAPg`, `56MMRj3J`, `xejqwBWR`, `Rqr8YpSW`, `t6Sg78Yr`, `fkDneern`. Using a
* message with only an error code is not always approriate, but error codes are generally lighter and safer. They don’t
* expose potentially sensitive information to an end-user. When they are used consistently throughout a codebase, the
* result is that errors contribute far fewer bytes to the overall size of a JavaScript bundle.
*
* Code examples:
*
* throw Error('yYxSWAPg'); // Must be a unique ID.
* throw Error('XZfhG2rc'); // Must be a unique ID.
*
* @param value Value to consider.
*
* @returns True if value is an {@see Error} code.
*
* @see $error.codeRegExp()
*/
export const errorCode = (value: unknown): value is Error => {
return error(value) && $error.codeRegExp().test(value.message);
};
/**
* Checks if value is a {@see $type.ErrorCause}.
*
* An error cause is either another error, a string, or an object with `{ code, meta? }`.
*
* @param value Value to consider.
* @param options All optional; {@see IsErrorCauseOptions}.
*
* @returns True if value is a {@see $type.ErrorCause}.
*/
export const errorCause = <Options extends IsErrorCauseOptions>(
value: unknown,
options?: Options,
): value is Options extends { type: 'error' }
? Error // Another error possibly identifying cause.
: //
Options extends { type: 'string' }
? string // String cause code; e.g., `foo-bar`.
: //
Options extends { type: 'object' }
? $type.ErrorCauseObject // `{ code, meta? }`.
: //
$type.ErrorCause => {
//
switch (options?.type) {
case 'error': {
return error(value);
}
case 'string': {
return string(value);
}
case 'object': {
return object(value) && string(value.code) && (nul(value.meta) || object(value.meta));
}
default: {
return error(value) || string(value) || (object(value) && string(value.code) && (nul(value.meta) || object(value.meta)));
}
}
};
/**
* Checks if value is a {@see Request}.
*
* @param value Value to consider.
*
* @returns True if value is a {@see Request}.
*/
export const request = (value: unknown): value is $type.Request => {
return value instanceof Request;
};
/**
* Checks if value is a {@see Response}.
*
* @param value Value to consider.
*
* @returns True if value is a {@see Response}.
*/
export const response = (value: unknown): value is $type.Response => {
return value instanceof Response;
};
/**
* Checks if value is a brand.
*
* @param value Value to consider.
*
* @returns True if value is a brand.
*/
export const brand = (value: unknown): value is $type.Brand => {
return object(value) && objectOfTag(value, $app.$pkgName + '/Brand');
};
/**
* Checks if value is a profile.
*
* @param value Value to consider.
*
* @returns True if value is a profile.
*/
export const profile = (value: unknown): value is $type.Profile => {
return object(value) && objectOfTag(value, $app.$pkgName + '/Profile');
};
/**
* Checks if value is a time.
*
* @param value Value to consider.
*
* @returns True if value is a time.
*/
export const time = (value: unknown): value is $type.Time => {
return object(value) && objectOfTag(value, $app.$pkgName + '/Time');
};
/**
* Checks if value is a date.
*
* @param value Value to consider.
*
* @returns True if value is a date.
*/
export const date = (value: unknown): value is Date => {
return value instanceof Date;
};
/**
* Checks if value is a URL.
*
* @param value Value to consider.
*
* @returns True if value is a URL.
*/
export const url = (value: unknown): value is $type.URL => {
return value instanceof URL;
};
/**
* Checks if value is a RegExp.
*
* @param value Value to consider.
*
* @returns True if value is a RegExp.
*/
export const regExp = (value: unknown): value is RegExp => {
return value instanceof RegExp;
};
/**
* Checks if value is a DOM node.
*
* @param value Value to consider.
*
* @returns True if value is DOM node.
*
* @requiredEnv web
*/
export const node = (value: unknown): value is Node => {
return $env.isWeb() && value instanceof Node;
};
/**
* Checks if value is a preact vNode.
*
* @param value Value to consider.
*
* @returns True if value is a preact vNode.
*
* @see https://o5p.me/jSIg3C -- JSX runtime.
* @see https://o5p.me/GqM0aR -- Preact vNode.
*/
export const vNode = (value: unknown): value is $preact.VNode => {
return $preact.isVNode(value) && plainObject(value)
&& Object.hasOwn(value, 'type') && plainObject(value.props)
&& Object.hasOwn(value, '__e' /* `__e` = `_dom` */); // prettier-ignore
};
/**
* Checks if value is a DOM element.
*
* @param value Value to consider.
*
* @returns True if value is DOM element.
*
* @requiredEnv web
*/
export const element = (value: unknown): value is Element => {
return $env.isWeb() && value instanceof Element;
};
/**
* Checks if value is an HTML element.
*
* @param value Value to consider.
*
* @returns True if value is an HTML element.
*
* @requiredEnv web
*/
export const htmlElement = (value: unknown): value is HTMLElement => {
return $env.isWeb() && value instanceof HTMLElement;
};
/**
* Checks if value is a DOM event.
*
* @param value Value to consider.
*
* @returns True if value is DOM event.
*
* @requiredEnv web
*/
export const event = (value: unknown): value is Event => {
return $env.isWeb() && value instanceof Event;
};
/**
* Checks if value is a left-click DOM event.
*
* @param value Value to consider.
*
* @returns True if value is left-click DOM event.
*
* @requiredEnv web
*/
export const leftClickMouseEvent = (value: unknown): value is MouseEvent => {
return (
$env.isWeb() && //
value instanceof MouseEvent &&
'click' === value.type &&
!value.ctrlKey &&
!value.metaKey &&
!value.altKey &&
!value.shiftKey &&
0 === (value.button || 0)
);
};
/**
* Checks a value’s object tag.
*
* @param value Value to consider.
* @param requiredTag Required object tag.
*
* @returns True if value’s object tag matches.
*
* @note Please {@see $obj.tag()} for details regarding the special case of `[tag]:[cn]`.
*/
export const objectTag = $standalone.$isꓺobjectTag;
/**
* Checks if a value has one or more object tags.
*
* @param value Value to consider.
* @param ...requiredTags Required object tag(s). Each argument is equivalent to an `AND` condition. Each argument
* that is an array is equivalent to a bracketed `AND (tag OR tag)` condition, allowing for both logical operators.
*
* @returns True if value is of all required object tags.
*
* @note Please {@see $obj.tag()} for details regarding the special case of `[tag]:[cn]`.
*/
export const objectOfTag = $standalone.$isꓺobjectOfTag;
/**
* Checks if a value is frozen.
*
* @param value Value to consider.
*
* @returns True if value is frozen.
*
* @note See: <https://o5p.me/Ni4WqQ> for frozen details.
*/
export const frozen = (value: unknown): boolean => {
return object(value) && Object.isFrozen(value);
};
/**
* Checks if a value is sealed.
*
* @param value Value to consider.
*
* @returns True if value is sealed.
*
* @note See: <https://o5p.me/D0CKAG> for sealed details.
*/
export const sealed = (value: unknown): boolean => {
return object(value) && Object.isSealed(value);
};
/**
* Checks if a value is iterable.
*
* @param value Value to consider.
*
* @returns True if value is iterable.
*
* @note See: <https://o5p.me/iYUYVK> for iterable details.
*/
export const iterable = <Type>(value: $type.OfIterable<Type> | Type): value is $type.OfIterable<Type> => {
return Symbol.iterator in Object(value);
};
/**
* Checks if value is an async iterable.
*
* @param value Value to consider.
*
* @returns True if value is an async iterable.
*
* @note See: <https://o5p.me/iYUYVK> for iterable details.
*/
export const asyncIterable = <Type>(value: $type.OfAsyncIterable<Type> | Type): value is $type.OfAsyncIterable<Type> => {
return Symbol.asyncIterator in Object(value);
};
/**
* Checks if value is a safe integer.
*
* @param value Value to consider.
*
* @returns True if value is a safe integer.
*
* @note Returns false for `NaN`, which is technically a number, but not an integer.
* @note Returns false for `-Infinity`, `Infinity`, which are not integers.
*/
export const safeInteger = (value: unknown): value is number => {
return Number.isSafeInteger(value);
};
/**
* Checks if value is a safe array key.
*
* @param value Value to consider.
*
* @returns True if value is a safe array key.
*
* @note Returns false for `NaN`, which is technically a number, but not a key.
* @note Returns false for `-Infinity`, `Infinity`, which are not keys.
*/
export const safeArrayKey = (value: unknown): value is number => {
return Number.isSafeInteger(value) && (value as number) >= 0;
};
/**
* Checks if value is a safe object key.
*
* @param value Value to consider.
*
* @returns True if value is a safe object key.
*/
export const safeObjectKey = (value: unknown): value is $type.ObjectKey => {
return string(value) || safeArrayKey(value) || symbol(value);
};
/**
* Checks if value is a safe object path.
*
* @param value Value to consider.
*
* @returns True if value is a safe object path.
*/
export const safeObjectPath = (value: unknown): value is $type.ObjectPath => {
return string(value) || safeArrayKey(value);
};
/**
* Checks if a property key would pollute an object’s prototype.
*
* @param key Property key to check.
*
* @returns True if property key would pollute an object’s prototype.
*/
export const protoPollutionKey = (key: number | string): boolean => {
return string(key) && ['__proto__', 'prototype', 'constructor'].includes(key.toLowerCase());
};
/**
* Checks if two values are strictly equal to each other.
*
* @param a First value to compare.
* @param b Second value to compare.
*
* @returns True if values are strictly equal; {@see https://o5p.me/58Z0j0}.
*/
export const equal = $standalone.$isꓺequal;
/**
* Checks if values are deeply equal to each other.
*
* @param a First value to compare.
* @param b Second value to compare.
*
* @returns True if values are deeply equal to each other.
*/
export const deepEqual = $standalone.$isꓺdeepEqual;
/**
* Checks if a value can be cloned by {@see structuredClone()}.
*
* @param value Value to consider.
*
* @returns True if value can be cloned by {@see structuredClone()}.
*
* @note See: <https://o5p.me/LKrX3H> for details.
*/
export const structuredCloneable = (value: unknown): boolean => {
if (!structuredCloneableObjectTags) {
structuredCloneableObjectTags = [
// See: <https://o5p.me/ZzJtat>.
'Array',
'ArrayBuffer',
'Boolean',
'DataView',
'Date',
'Error',
'EvalError',
'RangeError',
'ReferenceError',
'SyntaxError',
'TypeError',
'URIError',
'AggregateError',
'Map',
'Object',
'RegExp',
'Set',
'String',
'Int8Array',
'Uint8Array',
'Uint8ClampedArray',
'Int16Array',
'Uint16Array',
'Int32Array',
'Uint32Array',
'Float32Array',
'Float64Array',
'BigInt64Array',
'BigUint64Array',
...($env.isWeb() // See: <https://o5p.me/ZzJtat>.
? [
'AudioData',
'Blob',
'CropTarget',
'CryptoKey',
'DOMException',
'DOMMatrix',
'DOMMatrixReadOnly',
'DOMPoint',
'DOMPointReadOnly',
'DOMQuad',
'DOMRect',
'DOMRectReadOnly',
'File',
'FileList',