-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.js
More file actions
executable file
·29 lines (23 loc) · 920 Bytes
/
index.js
File metadata and controls
executable file
·29 lines (23 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#! /usr/bin/env node
'use strict';
/* ___ ___ ___
* /\ \ /\ \ /\ \ ___
* \:\ \ /::\ \ /::\ \ /\ \
* ___ /::\__\ /:/\:\ \ /:/\:\ \ \:\ \
* /\ /:/\/__/ /::\~\:\ \ /:/ \:\__\ /::\__\
* \:\/:/ / /:/\:\ \:\__\ /:/__/ \:|__| __/:/\/__/
* \::/ / \/__\:\ \/__/ \:\ \ /:/ / /\/:/ /
* \/__/ \:\__\ \:\ /:/ / \::/__/
* \/__/ \:\/:/ / \:\__\
* \::/__/ \/__/
*
* https:/github.com/v0lkan/JFDI
*
* This program is distributed under the terms of the MIT license.
* Please see the LICENSE.md file for details.
*/
var JFDI = require('./lib/JFDI'),
runtime = require('./lib/runtime');
if (!JFDI.sanitize()) {return;}
runtime.initialize();
runtime.execute();