Skip to content
This repository was archived by the owner on Aug 2, 2020. It is now read-only.

Commit 1451677

Browse files
committed
Updated README.md
1 parent 0cb30f4 commit 1451677

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1-
[![](https://api.travis-ci.org/neogeek/iknowishouldnt.js.svg?style=flat)](https://travis-ci.org/neogeek/iknowishouldnt.js) [![](https://david-dm.org/neogeek/iknowishouldnt.js/dev-status.svg?style=flat)](https://david-dm.org/neogeek/iknowishouldnt.js/#info=devDependencies) [![Latest Documentation](https://doxdox.org/images/badge-flat.svg)](https://doxdox.org/)
1+
# I Know I Shouldn't
22

3-
#I Know I Shouldn't
3+
> A micro-library that contains snippets of code useful for modifying strings and arrays. While it does modify the native prototype of String and Array, it does so with non-enumerable methods.
44
5-
A micro-library that contains snippets of code useful for modifying strings and arrays. While it does modify the native prototype of String and Array, it does so with non-enumerable methods.
5+
[![](https://api.travis-ci.org/neogeek/iknowishouldnt.js.svg?style=flat)](https://travis-ci.org/neogeek/iknowishouldnt.js)
6+
[![](https://david-dm.org/neogeek/iknowishouldnt.js/dev-status.svg?style=flat)](https://david-dm.org/neogeek/iknowishouldnt.js/#info=devDependencies)
7+
[![Latest Documentation](https://doxdox.org/images/badge-flat.svg)](https://doxdox.org/)
68

7-
##String.prototype.format
9+
## String.prototype.format
810

911
Returns a formatted string.
1012

@@ -17,16 +19,16 @@ Returns a formatted string.
1719

1820
```javascript
1921
'rgba(%i, %i, %i, %f)'.format(255, 0, 0, 0.5);
20-
````
22+
```
2123

2224
```javascript
2325
'Hello %s'.format('World!');
24-
````
26+
```
2527

26-
##Array.prototype.chunk
28+
## Array.prototype.chunk
2729

2830
Split an array into smaller chunks.
2931

3032
```javascript
3133
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11].chunk(2);
32-
````
34+
```

0 commit comments

Comments
 (0)