UNPKG

676 BJavaScriptView Raw
1//- JavaScript source code
2
3//- client.js ~~
4// ~~ (c) SRW, 25 Aug 2012
5// ~~ last updated 13 Aug 2013
6
7(function () {
8 'use strict';
9
10 // Pragmas
11
12 /*jshint maxparams: 1, quotmark: single, strict: true */
13
14 /*jslint indent: 4, maxlen: 80, node: true */
15
16 /*properties launch */
17
18 // Out-of-scope definitions
19
20 exports.launch = function () {
21 // This function is obviously just a placeholder.
22 throw new Error('The Node.js "native" client is under construction.');
23 };
24
25 // That's all, folks!
26
27 return;
28
29}());
30
31//- vim:set syntax=javascript: