1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-07-05 01:20:06 +01:00

Wrap rasterize.js in IIFE / satisfy jsHint.

This commit is contained in:
hacksalot 2016-01-07 18:33:26 -05:00
parent 97ebecd84a
commit 840d17c67b

View File

@ -1,5 +1,8 @@
// Exemplar script for generating documents with Phantom.js. // Exemplar script for generating documents with Phantom.js.
// https://raw.githubusercontent.com/ariya/phantomjs/master/examples/rasterize.js // https://raw.githubusercontent.com/ariya/phantomjs/master/examples/rasterize.js
(function() {
"use strict"; "use strict";
var page = require('webpage').create(), var page = require('webpage').create(),
system = require('system'), system = require('system'),
@ -49,3 +52,5 @@ if (system.args.length < 3 || system.args.length > 5) {
} }
}); });
} }
}());