UNPKG
@tokens-studio/graph-engine-migration
Version:
latest (0.14.1)
0.14.1
0.14.0
0.13.0
0.12.0
A package to upgrade old graph engine files to the new format
@tokens-studio/graph-engine-migration
/
dist
/
migrations
/
removePositionAnnotations.js
12 lines
•
358 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
const
removePositionAnnotations
=
async
(
graph
) => {
if
(graph.
nodes
) { graph.
nodes
.
forEach
(
(
node
) =>
{
if
(node?.
annotations
) {
delete
node.
annotations
.
xpos
;
delete
node.
annotations
.
ypos
; } }); }
return
graph; };
//# sourceMappingURL=removePositionAnnotations.js.map