Skip to content

Commit af21ad6

Browse files
authored
Merge pull request #11 from agiletech-web-dev/release
2 parents 6cfd6cf + 50034b3 commit af21ad6

File tree

6 files changed

+199
-63
lines changed

6 files changed

+199
-63
lines changed

Diff for: .github/workflows/prepublish.yml

-27
This file was deleted.

Diff for: docs/.vitepress/locale.ts

+8
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,19 @@ export function getLocaleConfig(lang: string) {
148148
{
149149
text: t('Predicates'),
150150
items: [
151+
{ text: 'isBoolean', link: '/reference/predicate/isBoolean' },
152+
{ text: 'isDate', link: '/reference/predicate/isDate' },
151153
{ text: 'isEqual', link: '/reference/predicate/isEqual' },
154+
{ text: 'isFunction', link: '/reference/predicate/isFunction' },
152155
{ text: 'isNil', link: '/reference/predicate/isNil' },
153156
{ text: 'isNotNil', link: '/reference/predicate/isNotNil' },
154157
{ text: 'isNull', link: '/reference/predicate/isNull' },
158+
{ text: 'isNumber', link: '/reference/predicate/isNumber' },
159+
{ text: 'isObject', link: '/reference/predicate/isObject' },
160+
{ text: 'isRegExp', link: '/reference/predicate/isRegExp' },
161+
{ text: 'isString', link: '/reference/predicate/isString' },
155162
{ text: 'isUndefined', link: '/reference/predicate/isUndefined' },
163+
{ text: 'isWindow', link: '/reference/predicate/isWindow' },
156164
],
157165
},
158166
{

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-utils-es",
3-
"version": "1.0.7",
3+
"version": "1.0.8",
44
"packageManager": "[email protected]",
55
"description": "A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.",
66
"license": "MIT",

Diff for: scripts/changeLog.json

+29
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
11
[
2+
{
3+
"hash": "8bc93607abed18bb3b7365f7f1e27e97be70d684",
4+
"date": "Thu Jul 18 00:30:42 2024 +0700",
5+
"message": "chore: release v1.0.8",
6+
"refs": "HEAD -> release, tag: v1.0.8, origin/release",
7+
"body": "",
8+
"author_name": "hunghg255",
9+
"author_email": "[email protected]",
10+
"version": "v1.0.8"
11+
},
12+
{
13+
"hash": "3a88b973c2cee5bcd225dc0c3ec7b1de702e21c6",
14+
"date": "Thu Jul 18 00:28:29 2024 +0700",
15+
"message": "feat(predicate): add is utils",
16+
"refs": "origin/feat/update-is-utils, feat/update-is-utils",
17+
"author_name": "hunghg255",
18+
"author_email": "[email protected]",
19+
"functions": [
20+
"toString",
21+
"isBoolean",
22+
"isDate",
23+
"isFunction",
24+
"isNumber",
25+
"isObject",
26+
"isRegExp",
27+
"isString",
28+
"isWindow"
29+
]
30+
},
231
{
332
"hash": "b46fd189054ce51423c4a64be7d18178faa97404",
433
"date": "Tue Jul 16 01:24:15 2024 +0700",

Diff for: scripts/contributions.json

+74-11
Original file line numberDiff line numberDiff line change
@@ -475,77 +475,133 @@
475475
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
476476
}
477477
],
478-
"isEqual.ts": [
478+
"clone.ts": [
479479
{
480480
"name": "hunghg255",
481481
"count": 1,
482482
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
483483
}
484484
],
485-
"isNil.ts": [
485+
"invert.ts": [
486486
{
487487
"name": "hunghg255",
488488
"count": 1,
489489
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
490490
}
491491
],
492-
"isNotNil.ts": [
492+
"omit.ts": [
493493
{
494494
"name": "hunghg255",
495495
"count": 1,
496496
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
497497
}
498498
],
499-
"isNull.ts": [
499+
"omitBy.ts": [
500500
{
501501
"name": "hunghg255",
502502
"count": 1,
503503
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
504504
}
505505
],
506-
"isUndefined.ts": [
506+
"pick.ts": [
507507
{
508508
"name": "hunghg255",
509509
"count": 1,
510510
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
511511
}
512512
],
513-
"clone.ts": [
513+
"pickBy.ts": [
514514
{
515515
"name": "hunghg255",
516516
"count": 1,
517517
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
518518
}
519519
],
520-
"invert.ts": [
520+
"isBoolean.ts": [
521521
{
522522
"name": "hunghg255",
523523
"count": 1,
524524
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
525525
}
526526
],
527-
"omit.ts": [
527+
"isDate.ts": [
528528
{
529529
"name": "hunghg255",
530530
"count": 1,
531531
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
532532
}
533533
],
534-
"omitBy.ts": [
534+
"isEqual.ts": [
535535
{
536536
"name": "hunghg255",
537537
"count": 1,
538538
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
539539
}
540540
],
541-
"pick.ts": [
541+
"isFunction.ts": [
542542
{
543543
"name": "hunghg255",
544544
"count": 1,
545545
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
546546
}
547547
],
548-
"pickBy.ts": [
548+
"isNil.ts": [
549+
{
550+
"name": "hunghg255",
551+
"count": 1,
552+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
553+
}
554+
],
555+
"isNotNil.ts": [
556+
{
557+
"name": "hunghg255",
558+
"count": 1,
559+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
560+
}
561+
],
562+
"isNull.ts": [
563+
{
564+
"name": "hunghg255",
565+
"count": 2,
566+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
567+
}
568+
],
569+
"isNumber.ts": [
570+
{
571+
"name": "hunghg255",
572+
"count": 1,
573+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
574+
}
575+
],
576+
"isObject.ts": [
577+
{
578+
"name": "hunghg255",
579+
"count": 1,
580+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
581+
}
582+
],
583+
"isRegExp.ts": [
584+
{
585+
"name": "hunghg255",
586+
"count": 1,
587+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
588+
}
589+
],
590+
"isString.ts": [
591+
{
592+
"name": "hunghg255",
593+
"count": 1,
594+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
595+
}
596+
],
597+
"isUndefined.ts": [
598+
{
599+
"name": "hunghg255",
600+
"count": 2,
601+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
602+
}
603+
],
604+
"isWindow.ts": [
549605
{
550606
"name": "hunghg255",
551607
"count": 1,
@@ -607,5 +663,12 @@
607663
"count": 1,
608664
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
609665
}
666+
],
667+
"_internal": [
668+
{
669+
"name": "hunghg255",
670+
"count": 1,
671+
"hash": "3732f6a5b9cdd33a2f401844e7daf029"
672+
}
610673
]
611674
}

0 commit comments

Comments
 (0)