node-phantom
node-phantom copied to clipboard
Wrong usage example
At the README this is wrong:
var phantom=require('node-phantom');
phantom.create(function(err,ph) {
The correct is:
var phantom=require('node-phantom');
phantom.create(function(ph, options) {