New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

foreach-prop

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

foreach-prop - npm Package Compare versions

Comparing version 1.1.10 to 1.1.11

dist/each-prop.umd.min.js

57

CHANGELOG.md

@@ -1,11 +0,18 @@

# 1.1.10
# 1.1.11 (31-05-2019)
* dependencies updated
* fixed cdn links for latest version
* improved documentation
* changelog improved
# 1.1.9
# 1.1.10 (30-05-2019)
* dependencies updated
# 1.1.9 (29-05-2019)
* installed `typescript` locally
* minor improvements
# 1.1.8
# 1.1.8 (28-05-2019)

@@ -16,3 +23,3 @@ * improved documentation

# 1.1.7
# 1.1.7 (28-05-2019)

@@ -23,3 +30,3 @@ * improved jest config

# 1.1.6
# 1.1.6 (25-05-2019)

@@ -31,3 +38,3 @@ * dependencies updated

# 1.1.5
# 1.1.5 (24-05-2019)

@@ -37,15 +44,15 @@ * dependencies updated

# 1.1.4
# 1.1.4 (17-05-2019)
* switched to `bundlib`
# 1.1.3
# 1.1.3 (17-05-2019)
* fixed: broken sourcemap
# 1.1.2
# 1.1.2 (17-05-2019)
* minor source code refactoring
# 1.1.1
# 1.1.1 (16-05-2019)

@@ -55,3 +62,3 @@ * dependencies updated

# 1.1.0
# 1.1.0 (09-05-2019)

@@ -64,7 +71,7 @@ * switched to `typescript`

# 1.0.3
# 1.0.3 (06-05-2019)
* dependencies updated
# 1.0.2
# 1.0.2 (05-05-2019)

@@ -74,3 +81,3 @@ * test improvements

# 1.0.1
# 1.0.1 (05-05-2019)

@@ -80,3 +87,3 @@ * test refactoring

# 1.0.0
# 1.0.0 (04-05-2019)

@@ -86,3 +93,3 @@ * first official release

# 0.2.3
# 0.2.3 (04-05-2019)

@@ -92,27 +99,27 @@ * improved documentation

# 0.2.2
# 0.2.2 (04-05-2019)
* added browser support
# 0.2.1
# 0.2.1 (04-05-2019)
* source code refactoring
# 0.2.0
# 0.2.0 (04-05-2019)
* changelog documented
* added some, every & includes methods
* added `some`, `every` & `includes` methods
# 0.1.1
# 0.1.1 (04-05-2019)
* added keywords
# 0.1.0
# 0.1.0 (04-05-2019)
* added find method
* added `find` method
* test refactoring
# 0.0.1
# 0.0.1 (01-05-2019)
* first release
* added forEach, map, keyOf, lasKeyOf, findKey, filter & reduce methods
* added `forEach`, `map`, `keyOf`, `lasKeyOf`, `findKey`, `filter` & `reduce` methods
{
"name": "foreach-prop",
"version": "1.1.10",
"version": "1.1.11",
"description": "Array-like methods for objects",

@@ -10,3 +10,6 @@ "main": "dist/each-prop.cjs.js",

"bundlib": {
"name": "eachProp"
"name": "eachProp",
"min": [
"browser"
]
},

@@ -39,3 +42,3 @@ "keywords": [

"dependencies": {
"args-to-arr": "^1.3.7"
"args-to-arr": "^1.3.10"
},

@@ -45,3 +48,3 @@ "devDependencies": {

"@types/node": "^12.0.3",
"bundlib": "^0.3.1",
"bundlib": "^0.3.2",
"eslint": "^5.16.0",

@@ -48,0 +51,0 @@ "jest": "^24.8.0",

@@ -22,3 +22,3 @@ # foreach-prop

```html
<script src="https://cdn.jsdelivr.net/npm/foreach-prop/dist/each-prop.umd.js"></script>
<script src="https://cdn.jsdelivr.net/npm/foreach-prop@latest/dist/each-prop.umd.js"></script>
```

@@ -29,6 +29,6 @@

```html
<script src="https://cdn.jsdelivr.net/npm/foreach-prop/dist/each-prop.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/foreach-prop@latest/dist/each-prop.umd.min.js"></script>
```
*[more options...](https://www.jsdelivr.com/package/npm/foreach-prop)*
*[more options...](https://www.jsdelivr.com/package/npm/foreach-prop?version=latest)*

@@ -40,7 +40,13 @@ ### unpkg

```html
<script src="https://unpkg.com/foreach-prop/dist/each-prop.umd.js"></script>
<script src="https://unpkg.com/foreach-prop@latest/dist/each-prop.umd.js"></script>
```
*[more options...](https://unpkg.com/foreach-prop/)*
##### for production
```html
<script src="https://unpkg.com/foreach-prop@latest/dist/each-prop.umd.min.js"></script>
```
*[more options...](https://unpkg.com/foreach-prop@latest/)*
## Usage

@@ -122,2 +128,4 @@

*added in:* `v0.2.0`
*Similar to* `Array.prototype.includes`*. It returns whether or not a value is present in an object.*

@@ -147,2 +155,4 @@

*added in:* `v0.1.0`
*Similar to* `Array.prototype.find`*. It executes the provided callback function for every key-value-pair in the object and returns the value once the provided callback function return a truthy value. It returns* `undefined` *if nothing found.*

@@ -219,2 +229,4 @@

*added in:* `v0.2.0`
*Similar to* `Array.prototype.some`*. It returns whether at least one of the key-value-pairs satisfy the provided callback function.*

@@ -236,2 +248,4 @@

*added in:* `v0.2.0`
*Similar to* `Array.prototype.every`*. It returns whether all key-value-pairs satisfy the provided callback function.*

@@ -238,0 +252,0 @@

Sorry, the diff of this file is not supported yet

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