-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* A **LOT** of code refactoring (coming closer to BETA) * Updated documentation + More asynchronous methods + Dynamic data source support + `Tag` property to tag any object + `Parent` property to navigate a LINQ array tree backwards + `Count` supports infinity LINQ arrays + `NotOfType` filters by item type + `SupportsDynamic` to determine, if the LINQ array tree could support dynamic in theory + `ToJson` serializes a LINQ array to a JSON string + static `FomJson` deserializes a LINQ array from a JSON string or array + static `FomJsonUri` uses JSON from an URI or deserializes a LINQ array from a JSON URI + Private property setter methods (`_*`) for extensions + Object extension improved (still experimental!) + Partition configuration (`LinqArrayExt.PartitionInfo`) + Partition column groups for pivot tables (`LinqArrayExt.PivotPartitionColumn`) + XML parsing (`LinqArrayExt.FromXml`) + Tree node conversion (`LinqArrayExt.FromNode`) + Support for indexed DB cursor (`LinqArrayExt.FromCursor` and `LinqArrayExt.FromCursorAsync`) + PLINQ (experimental!) + Unit tests for `LinqArray` and `LinqArrayExt` - Many bugs fixed
- Loading branch information
Showing
15 changed files
with
3,727 additions
and
411 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,18 @@ jobs: | |
steps: | ||
- name: Checkout branch | ||
uses: actions/checkout@v2 | ||
|
||
- name: Minify CSS/JS | ||
uses: nizarmah/[email protected] | ||
|
||
|
||
- name: Delete not required files | ||
run: | | ||
rm -f ${GITHUB_WORKSPACE}/tests/*.min.js | ||
- name: Update files from external sources | ||
run: | | ||
wget -v -O ${GITHUB_WORKSPACE}/tests/tests.js https://raw.githubusercontent.com/nd1012/JS-TESTS/main/src/tests.js | ||
- name: Commit modified files | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
dev | ||
src/index.html | ||
tests/linq.js | ||
tests/linqext.js | ||
tests/plinq.js | ||
tests/plinqworker.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.