1
1
mirror of https://github.com/ariya/phantomjs.git synced 2024-09-19 08:38:01 +03:00
phantomjs/examples/version.js

6 lines
147 B
JavaScript
Raw Normal View History

console.log('using PhantomJS version ' +
phantom.version.major + '.' +
phantom.version.minor + '.' +
phantom.version.patch);
phantom.exit();