Skip to content

Commit

Permalink
[readme] fix repo URLs; remove travis badge
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Feb 23, 2021
1 parent 3c83fa6 commit c27ea2b
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions README.md
@@ -1,6 +1,5 @@
#array.prototype.some <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

[![Build Status][travis-svg]][travis-url]
[![dependency status][deps-svg]][deps-url]
[![dev dependency status][dev-deps-svg]][dev-deps-url]
[![License][license-image]][license-url]
Expand All @@ -12,7 +11,7 @@

An ES5 spec-compliant `Array.prototype.some` shim/polyfill/replacement that works as far down as ES3.

This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the proposed [spec](http://www.ecma-international.org/ecma-262/6.0/).
This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the proposed [spec](https://www.ecma-international.org/ecma-262/6.0/).

Because `Array.prototype.some` depends on a receiver (the “this” value), the main export takes the array to operate on as the first argument.

Expand Down Expand Up @@ -51,17 +50,15 @@ assert.deepEqual(arr.some(threeOrLarger), some(arr, threeOrLarger));
Simply clone the repo, `npm install`, and run `npm test`

[package-url]: https://npmjs.org/package/array.prototype.some
[npm-version-svg]: http://versionbadg.es/es-shims/Array.prototype.some.svg
[travis-svg]: https://travis-ci.org/es-shims/Array.prototype.some.svg
[travis-url]: https://travis-ci.org/es-shims/Array.prototype.some
[npm-version-svg]: https://versionbadg.es/es-shims/Array.prototype.some.svg
[deps-svg]: https://david-dm.org/es-shims/Array.prototype.some.svg
[deps-url]: https://david-dm.org/es-shims/Array.prototype.some
[dev-deps-svg]: https://david-dm.org/es-shims/Array.prototype.some/dev-status.svg
[dev-deps-url]: https://david-dm.org/es-shims/Array.prototype.some#info=devDependencies
[testling-svg]: https://ci.testling.com/es-shims/Array.prototype.some.png
[testling-url]: https://ci.testling.com/es-shims/Array.prototype.some
[npm-badge-png]: https://nodei.co/npm/array.prototype.some.png?downloads=true&stars=true
[license-image]: http://img.shields.io/npm/l/array.prototype.some.svg
[license-image]: https://img.shields.io/npm/l/array.prototype.some.svg
[license-url]: LICENSE
[downloads-image]: http://img.shields.io/npm/dm/array.prototype.some.svg
[downloads-url]: http://npm-stat.com/charts.html?package=array.prototype.some
[downloads-image]: https://img.shields.io/npm/dm/array.prototype.some.svg
[downloads-url]: https://npm-stat.com/charts.html?package=array.prototype.some

0 comments on commit c27ea2b

Please sign in to comment.