UNPKG
jointjs
Version:
alpha (4.0.0-alpha.4)
beta (3.6.0-beta.2)
latest (3.7.7)
4.0.0-alpha.4
4.0.0-alpha.3
4.0.0-alpha.2
4.0.0-alpha.1
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.5
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.6.0-beta.2
3.6.0-beta.1
3.6.0-beta.0
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.0
3.1.1
3.1.0
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.2.1
2.2.0
2.1.4
2.1.3
2.1.2
2.1.1
2.1.0
2.0.1
2.0.0
1.1.0
1.0.3
1.0.2
1.0.1
0.9.10
0.9.9
0.9.7
0.9.5
0.9.4
0.8.0
0.7.0
JavaScript diagramming library
jointjs.com
clientIO/joint
jointjs
/
demo
/
ts-demo
/
node_modules
/
mimic-fn
/
index.js
10 lines
(8 loc)
•
304 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
module
.
exports
=
(
to,
from
) =>
{
//
TODO:
use `Reflect.ownKeys()` when targeting Node.js 6
for
(
const
prop
of
Object
.
getOwnPropertyNames
(
from
).
concat
(
Object
.
getOwnPropertySymbols
(
from
))) {
Object
.
defineProperty
(to, prop,
Object
.
getOwnPropertyDescriptor
(
from
, prop)); }
return
to; };