Skip to content

Commit

Permalink
change name back to js-itertools
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Nov 5, 2016
1 parent 5ab72b8 commit 46d7c3c
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 25 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
# [aureooms/es-itertools](https://aureooms.github.io/es-itertools)
# [aureooms/js-itertools](https://aureooms.github.io/js-itertools)

Iterable and iterator library for JavaScript.
Parent is [aureooms/js-library](https://github.com/aureooms/js-library).
See [documentation](https://aureooms.github.io/es-itertools/index.html).
See [documentation](https://aureooms.github.io/js-itertools/index.html).

```js
cycle( chain( [ [ 0 , 1 , 2 ] , [ 3 , 4 , 5 ] ] ) ) ; // 0 1 2 3 4 5 0 1 ...
```

[![NPM license](http://img.shields.io/npm/l/aureooms-es-itertools.svg?style=flat)](https://raw.githubusercontent.com/aureooms/es-itertools/master/LICENSE)
[![NPM version](http://img.shields.io/npm/v/aureooms-es-itertools.svg?style=flat)](https://www.npmjs.org/package/aureooms-es-itertools)
[![Build status](http://img.shields.io/travis/aureooms/es-itertools.svg?style=flat)](https://travis-ci.org/aureooms/es-itertools)
[![Coverage status](http://img.shields.io/coveralls/aureooms/es-itertools.svg?style=flat)](https://coveralls.io/r/aureooms/es-itertools)
[![Dependencies status](http://img.shields.io/david/aureooms/es-itertools.svg?style=flat)](https://david-dm.org/aureooms/es-itertools#info=dependencies)
[![Dev dependencies status](http://img.shields.io/david/dev/aureooms/es-itertools.svg?style=flat)](https://david-dm.org/aureooms/es-itertools#info=devDependencies)
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/es-itertools.svg?style=flat)](https://codeclimate.com/github/aureooms/es-itertools)
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-es-itertools.svg?style=flat)](https://www.npmjs.org/package/aureooms-es-itertools)
[![GitHub issues](http://img.shields.io/github/issues/aureooms/es-itertools.svg?style=flat)](https://github.com/aureooms/es-itertools/issues)
[![Documentation](https://aureooms.github.io/es-itertools/badge.svg)](https://aureooms.github.io/es-itertools/source.html)
[![NPM license](http://img.shields.io/npm/l/aureooms-js-itertools.svg?style=flat)](https://raw.githubusercontent.com/aureooms/js-itertools/master/LICENSE)
[![NPM version](http://img.shields.io/npm/v/aureooms-js-itertools.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-itertools)
[![Build status](http://img.shields.io/travis/aureooms/js-itertools.svg?style=flat)](https://travis-ci.org/aureooms/js-itertools)
[![Coverage status](http://img.shields.io/coveralls/aureooms/js-itertools.svg?style=flat)](https://coveralls.io/r/aureooms/js-itertools)
[![Dependencies status](http://img.shields.io/david/aureooms/js-itertools.svg?style=flat)](https://david-dm.org/aureooms/js-itertools#info=dependencies)
[![Dev dependencies status](http://img.shields.io/david/dev/aureooms/js-itertools.svg?style=flat)](https://david-dm.org/aureooms/js-itertools#info=devDependencies)
[![Code Climate](http://img.shields.io/codeclimate/github/aureooms/js-itertools.svg?style=flat)](https://codeclimate.com/github/aureooms/js-itertools)
[![NPM downloads per month](http://img.shields.io/npm/dm/aureooms-js-itertools.svg?style=flat)](https://www.npmjs.org/package/aureooms-js-itertools)
[![GitHub issues](http://img.shields.io/github/issues/aureooms/js-itertools.svg?style=flat)](https://github.com/aureooms/js-itertools/issues)
[![Documentation](https://aureooms.github.io/js-itertools/badge.svg)](https://aureooms.github.io/js-itertools/source.html)

## References in Python and JavaScript

Expand Down
6 changes: 3 additions & 3 deletions doc/manual/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ or [npm](https://github.com/npm/npm).

### jspm
```terminal
jspm install github:aureooms/es-itertools
jspm install github:aureooms/js-itertools
# or
jspm install npm:aureooms-es-itertools
jspm install npm:aureooms-js-itertools
```

### npm
```terminal
npm install aureooms-es-itertools --save
npm install aureooms-js-itertools --save
```
6 changes: 3 additions & 3 deletions doc/manual/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ through a transpiler, for example [babel](https://babeljs.io).
### jspm
Configure [jspm](http://jspm.io) to transpile all the code. Then
```js
let itertools = require( 'github:aureooms/es-itertools' ) ;
let itertools = require( 'github:aureooms/js-itertools' ) ;
// or
import itertools from 'aureooms-es-itertools' ;
import itertools from 'aureooms-js-itertools' ;
```

### npm
Configure your code to transpile dependencies on the fly (for example with
[babel-register](https://babeljs.io/docs/usage/require)). Then you can
```js
import itertools from 'aureooms-es-itertools' ;
import itertools from 'aureooms-js-itertools' ;
```

Additionally, for the browser, you can configure
Expand Down
4 changes: 2 additions & 2 deletions doc/scripts/header.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ domReady(function(){

var projectname = document.createElement('a');
projectname.classList.add('project-name');
projectname.text = 'aureooms/es-itertools';
projectname.text = 'aureooms/js-itertools';
projectname.href = './index.html' ;

var header = document.getElementsByTagName('header')[0] ;
header.insertBefore(projectname,header.firstChild);

var testlink = document.querySelector('header > a[data-ice="testLink"]') ;
testlink.href = 'https://coveralls.io/github/aureooms/es-itertools' ;
testlink.href = 'https://coveralls.io/github/aureooms/js-itertools' ;
testlink.target = '_BLANK' ;

var searchBox = document.querySelector('.search-box');
Expand Down
2 changes: 1 addition & 1 deletion esdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"debug": false,
"index": "./README.md",
"package": "./package.json",
"title": "aureooms/es-itertools",
"title": "aureooms/js-itertools",
"test": {
"type": "ava",
"source": "./test/src"
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "aureooms-es-itertools",
"name": "aureooms-js-itertools",
"version": "2.3.1",
"author": "aureooms",
"license": "AGPL-3.0",
Expand All @@ -17,13 +17,13 @@
"product",
"reduce"
],
"homepage": "https://aureooms.github.io/es-itertools",
"homepage": "https://aureooms.github.io/js-itertools",
"repository": {
"type": "git",
"url": "https://github.com/aureooms/es-itertools"
"url": "https://github.com/aureooms/js-itertools"
},
"bugs": {
"url": "https://github.com/aureooms/es-itertools/issues"
"url": "https://github.com/aureooms/js-itertools/issues"
},
"scripts": {
"test": "ava ./test/src --concurrency 4",
Expand Down

0 comments on commit 46d7c3c

Please sign in to comment.