qm
Version:
QMachine: A platform for World Wide Computing
32 lines (19 loc) • 676 B
JavaScript
//- JavaScript source code
//- client.js ~~
// ~~ (c) SRW, 25 Aug 2012
// ~~ last updated 13 Aug 2013
(function () {
'use strict';
// Pragmas
/*jshint maxparams: 1, quotmark: single, strict: true */
/*jslint indent: 4, maxlen: 80, node: true */
/*properties launch */
// Out-of-scope definitions
exports.launch = function () {
// This function is obviously just a placeholder.
throw new Error('The Node.js "native" client is under construction.');
};
// That's all, folks!
return;
}());
//- vim:set syntax=javascript: