Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
dvonlehman committed Apr 17, 2015
1 parent 65578dc commit 3168789
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -39,12 +39,18 @@ Assert that value is NaN using [`_.isNaN`](https://lodash.com/docs#isNaN).
### assert.isObject(value)
Assert that value is an object using [`_.isObject`](https://lodash.com/docs#isObject).

### assert.isString(value)
Assert that value is a astring using [`_.isString`](https://lodash.com/docs#isString).

### assert.isArray(value)
Assert that value is an array using [`_.isArray`](https://lodash.com/docs#isArray).

### assert.isEmpty(value)
Assert that value is empty using [`_.isEmpty`](https://lodash.com/docs#isEmpty).

### assert.isNotEmpty(value)
Assert that the value is not empty using the inverse of [`_.isEmpty`](https://lodash.com/docs#isEmpty).

### assert.isError(value)
Assert that the specified value in an `Error` type using [`_.isError`](https://lodash.com/docs#isError).

Expand Down

0 comments on commit 3168789

Please sign in to comment.