UNPKG
@jenskrumsieck/moleculesjs
Version:
latest (0.1.0)
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
Some TypeScript Molecule Parsers
github.com/JensKrumsieck/MoleculesJS
JensKrumsieck/MoleculesJS
@jenskrumsieck/moleculesjs
/
dist
/
primitives
/
molecule.js
12 lines
(11 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
Molecule
{
constructor
(
{ atoms, bonds }
) {
this
.
atoms
= atoms;
this
.
bonds
= bonds; } atoms; bonds; }
exports
.
default
=
Molecule
;