Skip to content

Commit

Permalink
Update example.js
Browse files Browse the repository at this point in the history
  • Loading branch information
alexlangberg committed Dec 17, 2017
1 parent 4343e6e commit 43655b1
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions example.js
@@ -1,7 +1,6 @@
'use strict';

var goldwasher = require('goldwasher');
var goldwasherNeedle = require('./lib/goldwasher-needle');
var goldwasher = require('./');

var url = 'http://www.google.com';
var options = {
Expand All @@ -10,6 +9,6 @@ var options = {
}
};

goldwasher.needle(url, options, function(error, result) {
goldwasher(url, options, function(error, result) {
console.log(result);
});

0 comments on commit 43655b1

Please sign in to comment.