Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
REMitchell
GitHub Repository: REMitchell/python-crawling
Path: blob/master/6-Selenium/phantomjs/examples/universe.js
164 views
1
// This is to be used by "module.js" (and "module.coffee") example(s).
2
// There should NOT be a "universe.coffee" as only 1 of the 2 would
3
// ever be loaded unless the file extension was specified.
4
5
exports.answer = 42;
6
7
exports.start = function () {
8
console.log('Starting the universe....');
9
}
10
11
12