Skip to content

Commit

Permalink
beautified code in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
therewillbecode committed Oct 2, 2016
1 parent b548dc5 commit d09cce0
Showing 1 changed file with 21 additions and 7 deletions.
28 changes: 21 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,27 @@ regexmap(regexObject, stringsToMatch);
```
#### Output
```js
{
name:
[ [ 'alexa', index: 11, input: 'My name is alexa and I am 18.' ],
null ],
age:
[ [ '18', index: 26, input: 'My name is alexa and I am 18.' ],
[ '25', index: 24, input: 'My name is tom and I am 25' ] ]
{
name: [
[
'alexa',
index: 11,
input: 'My name is alexa and I am 18.'
],
null
],
age: [
[
'18',
index: 26,
input: 'My name is alexa and I am 18.'
],
[
'25',
index: 24,
input: 'My name is tom and I am 25'
]
]
}
```

Expand Down

0 comments on commit d09cce0

Please sign in to comment.