Socket
Socket
Sign inDemoInstall

mini-linq-js

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mini-linq-js - npm Package Compare versions

Comparing version 1.2.2 to 1.2.3

tests/bower_components/mocha/.bower.json

2

package.json
{
"name": "mini-linq-js",
"version": "1.2.2",
"version": "1.2.3",
"description": "LINQ for JavaScript library, which allows to work with arrays in a more easy way and focus on business logic.",

@@ -5,0 +5,0 @@ "homepage": "https://github.com/akopachov/mini-linq-js",

@@ -17,2 +17,5 @@ # mini-linq.js

```
You can also attach and use mini-linq with [knockout observableArray](http://knockoutjs.com/documentation/observableArrays.html). Just link `mini-linq.knockout.js`.
Also you may use postponed [lazy-execution for arrays](#lazyArrays) by linking `mini-linq.lazy.js`.
You also may use it in your Node.JS project by using

@@ -22,4 +25,2 @@ ```javascript

```
You can also attach and use mini-linq with [knockout observableArray](http://knockoutjs.com/documentation/observableArrays.html). Just link `mini-linq.knockout.js`.
Also you may use postponed [lazy-execution for arrays](#lazyArrays) by linking `mini-linq.lazy.js`.

@@ -125,3 +126,3 @@ ## Available methods

###### Description:
`.selectMany` produces new array by applying [selector](#selector) for each element and combining selected arrays together into one sngle array.
`.selectMany` produces new array by applying [selector](#selector) for each element and combining selected arrays together into one single array.
###### Arguments:

@@ -128,0 +129,0 @@ `.selectMany` accepts [selector](#selector).

@@ -138,3 +138,3 @@ /* ! https://github.com/akopachov/mini-linq-js */

applyModificators();
return Array.isArray(_array) ? _array.slice(0) : _array;
return LINQ.utils.isArray(_array) ? _array.slice(0) : _array;
};

@@ -141,0 +141,0 @@ };

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc