From 866661d0c6cf78fb2fdf95372a49db8d444e2d28 Mon Sep 17 00:00:00 2001 From: bubkoo Date: Fri, 15 Apr 2016 11:41:24 +0800 Subject: [PATCH] v1.1.1 --- README.md | 26 +++++++++++++------------- package.json | 8 ++++---- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index b00b25c..86e2f76 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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'); @@ -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). diff --git a/package.json b/package.json index a40e3b4..8219272 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -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",