UNPKG
hulet
Version:
latest (0.1.4)
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
The canvas as the Cartesian plane
github.com/quantum9Innovation/hulet
quantum9Innovation/hulet
hulet
/
hulet
/
index.js
22 lines
(14 loc)
•
293 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Initialize Hulet and export relevant functions
// All logic is contained within `core.js`
// Imports
const
core =
require
(
'./core'
)
const
{
Cartesian
} = core
// Exports
module
.
exports
= {
// Reserved
Cartesian
,
// Base
core,
// Metadata
version
:
'v0.1.4'
, }