Skip to content

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bubkoo committed Apr 15, 2016
1 parent 3a5e347 commit 866661d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
> Checks if the given value is an array or array-like object.

[![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/bubkoo/is-array-like/blob/master/LICENSE)
[![MIT License](https://img.shields.io/badge/license-MIT_License-green.svg?style=flat-square)](https://github.com/gearcase/is-array-like/blob/master/LICENSE)

[![build:?](https://img.shields.io/travis/bubkoo/is-array-like/master.svg?style=flat-square)](https://travis-ci.org/bubkoo/is-array-like)
[![coverage:?](https://img.shields.io/coveralls/bubkoo/is-array-like/master.svg?style=flat-square)](https://coveralls.io/github/bubkoo/is-array-like)
[![build:?](https://img.shields.io/travis/gearcase/is-array-like/master.svg?style=flat-square)](https://travis-ci.org/gearcase/is-array-like)
[![coverage:?](https://img.shields.io/coveralls/gearcase/is-array-like/master.svg?style=flat-square)](https://coveralls.io/github/gearcase/is-array-like)


## Install
Expand All @@ -18,7 +18,7 @@ $ npm install --save is-array-like

## Usage

> For more use-cases see the [tests](https://github.com/bubkoo/is-array-like/blob/master/test/spec/index.js)
> For more use-cases see the [tests](https://github.com/gearcase/is-array-like/blob/master/test/spec/index.js)
```js
var isArrayLike = require('is-array-like');
Expand All @@ -41,18 +41,18 @@ function testArguments() {

## Related

- [is-index](https://github.com/bubkoo/is-index) - Checks if the given value is a valid array-like index.
- [is-length](https://github.com/bubkoo/is-length) - Checks if the given value is a valid array-like length.
- [to-length](https://github.com/bubkoo/to-length) - Converts value to an integer suitable for use as the length of an array-like object.
- [pick-item](https://github.com/bubkoo/pick-item) - Randomly sampling a item from an array.
- [pick-items](https://github.com/bubkoo/pick-items) - Randomly sampling some items from an array.
- [drop-left](https://github.com/bubkoo/drop-left) - Creates a slice of array with n elements dropped from the beginning.
- [drop-right](https://github.com/bubkoo/drop-right) - Creates a slice of array with n elements dropped from the end.
- [shuffle-arr](https://github.com/bubkoo/shuffle-arr) - Randomize the order of the elements in an array or array-like object.
- [is-index](https://github.com/gearcase/is-index) - Checks if the given value is a valid array-like index.
- [is-length](https://github.com/gearcase/is-length) - Checks if the given value is a valid array-like length.
- [to-length](https://github.com/gearcase/to-length) - Converts value to an integer suitable for use as the length of an array-like object.
- [pick-item](https://github.com/gearcase/pick-item) - Randomly sampling a item from an array.
- [pick-items](https://github.com/gearcase/pick-items) - Randomly sampling some items from an array.
- [drop-left](https://github.com/gearcase/drop-left) - Creates a slice of array with n elements dropped from the beginning.
- [drop-right](https://github.com/gearcase/drop-right) - Creates a slice of array with n elements dropped from the end.
- [shuffle-arr](https://github.com/gearcase/shuffle-arr) - Randomize the order of the elements in an array or array-like object.


## Contributing

Pull requests and stars are highly welcome.

For bugs and feature requests, please [create an issue](https://github.com/bubkoo/is-array-like/issues/new).
For bugs and feature requests, please [create an issue](https://github.com/gearcase/is-array-like/issues/new).
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "is-array-like",
"version": "1.1.0",
"version": "1.1.1",
"description": "Checks if the given value is an array or array-like object.",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -29,12 +29,12 @@
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bubkoo/is-array-like.git"
"url": "git+https://github.com/gearcase/is-array-like.git"
},
"bugs": {
"url": "https://github.com/bubkoo/is-array-like/issues"
"url": "https://github.com/gearcase/is-array-like/issues"
},
"homepage": "https://github.com/bubkoo/is-array-like#readme",
"homepage": "https://github.com/gearcase/is-array-like#readme",
"devDependencies": {
"jshint": "^2.9.1",
"chai": "^3.5.0",
Expand Down

0 comments on commit 866661d

Please sign in to comment.