Skip to content

Commit e58c251

Browse files
authored
Update README.md
1 parent f6b11c3 commit e58c251

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Functional methods like forEach, map, filter, and other Array methods for Object
4242
# Usage
4343

4444
#### You can require each method individually `object-loops/<loop>`
45-
45+
* Most efficient for browser bundling. Only bundles what you use.
4646
```js
4747
var filter = require('object-loops/filter')
4848
var forEach = require('object-loops/for-each')
@@ -59,7 +59,7 @@ reduce({ x:10, y: 20 }, callback)
5959
```
6060

6161
#### If you want to chain multiple object-loops use `object-loops/chain`
62-
62+
* Not efficient for browser bundling. Bundles all object-loops, even those not used.
6363
```js
6464
var chain = require('object-loops/chain')
6565
chain({ x:10, y: 20 })
@@ -72,7 +72,7 @@ chain({ x:10, y: 20 })
7272
```
7373

7474
#### If you want to use forEach, map, reduce, filter, etc methods directly on objects:
75-
75+
* Not efficient for browser bundling. Bundles all object-loops, even those not used.
7676
```js
7777
require('object-loops')() // extends Object.prototype
7878
obj.forEach(callback)

0 commit comments

Comments
 (0)