Skip to content

Commit

Permalink
Deleted CoffeeScript source.
Browse files Browse the repository at this point in the history
  • Loading branch information
jprichardson committed Jan 22, 2013
1 parent c148aab commit f9e4878
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 45 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -38,7 +38,7 @@ Revisiting the previous example, you can solve this problem quite easily with a


In `triggerflow`, base conditions are when a `boolean` is `true` and when a `number` is `0`. In `triggerflow`, base conditions are when a `boolean` is `true` and when a `number` is `0`.


Example: **Example:**


```javascript ```javascript
var trigger = require('triggerflow'); var trigger = require('triggerflow');
Expand All @@ -50,7 +50,7 @@ walk('~/data')
.on('file', function(file) { .on('file', function(file) {
processing += 1; processing += 1;
tf.update({processing: processing}); tf.update({processing: processing});
processFile(function() { //hypothetical async file process function processFile(file, function() { //hypothetical async file process function
processing -= 1; processing -= 1;
tf.update({processing: processing}); tf.update({processing: processing});
}) })
Expand Down
43 changes: 0 additions & 43 deletions src/triggerflow.coffee

This file was deleted.

0 comments on commit f9e4878

Please sign in to comment.