node-phantom icon indicating copy to clipboard operation
node-phantom copied to clipboard

Wrong usage example

Open herlon214 opened this issue 10 years ago • 0 comments

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) {

herlon214 avatar Jun 30 '15 21:06 herlon214