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
/
bond.js
13 lines
(12 loc)
•
252 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
Bond
=
void
0
;
class
Bond
{
constructor
(
atom1, atom2
) {
this
.
atom1
= atom1;
this
.
atom2
= atom2; } atom1; atom2; }
exports
.
Bond
=
Bond
;