Skip to content

Commit

Permalink
run verb to generate readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Feb 18, 2018
1 parent 6dfc84e commit 92c8a99
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
12 changes: 12 additions & 0 deletions .verb.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,18 @@ console.log(braces.expand('a{b}c'));

## Options

### options.maxLength

**Type**: `Number`

**Default**: `65,536`

**Description**: Limit the length of the input string. Useful when the input string is generated or your application allows users to pass a string, et cetera.

```js
console.log(braces('a/{b,c}/d', { maxLength: 3 })); //=> throws an error
```

### options.expand

**Type**: `Boolean`
Expand Down
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,18 @@ console.log(braces.expand('a{b}c'));

## Options

### options.maxLength

**Type**: `Number`

**Default**: `65,536`

**Description**: Limit the length of the input string. Useful when the input string is generated or your application allows users to pass a string, et cetera.

```js
console.log(braces('a/{b,c}/d', { maxLength: 3 })); //=> throws an error
```

### options.expand

**Type**: `Boolean`
Expand Down Expand Up @@ -595,7 +607,7 @@ You might also be interested in these projects:

| **Commits** | **Contributor** |
| --- | --- |
| 184 | [jonschlinkert](https://github.com/jonschlinkert) |
| 188 | [jonschlinkert](https://github.com/jonschlinkert) |
| 4 | [doowb](https://github.com/doowb) |
| 1 | [es128](https://github.com/es128) |
| 1 | [eush77](https://github.com/eush77) |
Expand All @@ -605,17 +617,18 @@ You might also be interested in these projects:

**Jon Schlinkert**

* [linkedin/in/jonschlinkert](https://linkedin.com/in/jonschlinkert)
* [github/jonschlinkert](https://github.com/jonschlinkert)
* [twitter/jonschlinkert](https://twitter.com/jonschlinkert)

### License

Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert).
Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert).
Released under the [MIT License](LICENSE).

***

_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on October 19, 2017._
_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on February 17, 2018._

<hr class="footnotes-sep">
<section class="footnotes">
Expand Down

0 comments on commit 92c8a99

Please sign in to comment.