Skip to content

Commit 0801f2a

Browse files
committed
curran -> datavis-tech. Closes #4
1 parent 5b2cee0 commit 0801f2a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# reactive-function [![Build Status](https://travis-ci.org/curran/reactive-function.svg?branch=master)](https://travis-ci.org/curran/reactive-function)
1+
# reactive-function [![Build Status](https://travis-ci.org/datavis-tech/reactive-function.svg?branch=master)](https://travis-ci.org/datavis-tech/reactive-function)
22

33
[![NPM](https://nodei.co/npm/reactive-function.png)](https://npmjs.org/package/reactive-function)
44

55
* A library for managing data flows graphs and changing state.
6-
* Built on [reactive-property](https://github.com/curran/reactive-property).
7-
* The foundation for [reactive-model](https://github.com/curran/reactive-model).
6+
* Built on [reactive-property](https://github.com/datavis-tech/reactive-property).
7+
* The foundation for [reactive-model](https://github.com/datavis-tech/reactive-model).
88

99
# Usage
1010

@@ -18,7 +18,7 @@ Require it in your code like this:
1818
var ReactiveFunction = require("reactive-function");
1919
```
2020

21-
This library is designed to work with [reactive-property](https://github.com/curran/reactive-property), you'll need that too.
21+
This library is designed to work with [reactive-property](https://github.com/datavis-tech/reactive-property), you'll need that too.
2222

2323
```javascript
2424
var ReactiveProperty = require("reactive-property");
@@ -57,7 +57,7 @@ ReactiveFunction({
5757
});
5858
```
5959

60-
This defines a "reactive function" that will be invoked when its inputs (`firstName` and `lastName`) are both defined and whenever either one changes ([`null` is considered a defined value](https://github.com/curran/reactive-function/issues/1)). The function will be invoked on the next tick of the JavaScript event loop after it is defined and after any dependencies change.
60+
This defines a "reactive function" that will be invoked when its inputs (`firstName` and `lastName`) are both defined and whenever either one changes ([`null` is considered a defined value](https://github.com/datavis-tech/reactive-function/issues/1)). The function will be invoked on the next tick of the JavaScript event loop after it is defined and after any dependencies change.
6161

6262
To force a synchronous evaluation of all reactive functions whose dependencies have updated, you can call
6363

@@ -71,7 +71,7 @@ Now you can access the computed value of the reactive function by invoking it as
7171
console.log(fullName()); // Prints "Jane Smith"
7272
```
7373

74-
For more detailed example code, have a look at the [tests](https://github.com/curran/reactive-function/blob/master/test.js).
74+
For more detailed example code, have a look at the [tests](https://github.com/datavis-tech/reactive-function/blob/master/test.js).
7575

7676
Related work:
7777

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"repository": {
1010
"type": "git",
11-
"url": "git+https://github.com/curran/reactive-function.git"
11+
"url": "git+https://github.com/datavis-tech/reactive-function.git"
1212
},
1313
"keywords": [
1414
"FRP",
@@ -26,9 +26,9 @@
2626
"author": "Curran Kelleher",
2727
"license": "MIT",
2828
"bugs": {
29-
"url": "https://github.com/curran/reactive-function/issues"
29+
"url": "https://github.com/datavis-tech/reactive-function/issues"
3030
},
31-
"homepage": "https://github.com/curran/reactive-function#readme",
31+
"homepage": "https://github.com/datavis-tech/reactive-function#readme",
3232
"dependencies": {
3333
"graph-data-structure": "^0.5.0",
3434
"reactive-property": "^0.8.0"

0 commit comments

Comments
 (0)