aQuery.js 1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package aQuery.js --version 1.0.7                
NuGet\Install-Package aQuery.js -Version 1.0.7                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="aQuery.js" Version="1.0.7" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add aQuery.js --version 1.0.7                
#r "nuget: aQuery.js, 1.0.7"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install aQuery.js as a Cake Addin
#addin nuget:?package=aQuery.js&version=1.0.7

// Install aQuery.js as a Cake Tool
#tool nuget:?package=aQuery.js&version=1.0.7                

aQuery.js is a JavaScript Array Library that is designed to work with modern browsers, not so modern browsers, and node.js. It's fast, easy to use, free, and already familiar to folks that know jQuery and Microsoft.NET LINQ.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.13 1,560 3/17/2016
1.0.12 1,234 8/29/2015
1.0.11 1,433 8/14/2015
1.0.10 1,577 8/8/2014
1.0.9 1,131 8/8/2014
1.0.8 1,386 7/23/2014
1.0.7 1,177 7/20/2014
1.0.6 1,383 7/10/2014

aQuery.js 1.0.7 is an enhancement and fix release that contains breaking changes.

* Breaking: The sequenceEqual method now behaves exactly as its LINQ counterpart does: the elements of both sets must be in the same order for them to be considered equal. If you want to reproduce the previous behavior, use the except method in both directions to see if either yields an aQuery object with a count result greater than zero.
* Added the concat method. It will make use of the concat method of the Array prototype if it is there.
* The all method will now make use of the every method of the Array prototype if it is there.
* The any method will now make use of the some method of the Array prototype if it is there.
* The each method will now make use of the forEach method of the Array prototype if it is there.
* The first, firstOrDefault, last, and lastOrDefault methods will now make use of the find method of the Array prototype if it is there.
* The firstIndex and lastIndex methods will now make use of the findIndex method of the Array prototype if it is there.
* The select method will now make use of the map method of the Array prototype if it is there.
* The where method will now make use of the filter method of the Array prototype if it is there.
* We now always invoke the Array prototype's methods rather than invoking them off of Array instances directly because we're suspicious of bad polyfills and other non-sense!
* Errors are now thrown as error objects rather than strings.
* Added multiple VSDOC method signatures to methods with optional arguments and specified expected return type for each.
* Douglas Crockford will no longer be upset about our blatant non-use of brackets for conditional single statements.