called to remove all internal values but the _id
(node: GridStackNode)
| 1248 | |
| 1249 | /** called to remove all internal values but the _id */ |
| 1250 | public cleanupNode(node: GridStackNode): GridStackEngine { |
| 1251 | for (const prop in node) { |
| 1252 | if (prop[0] === '_' && prop !== '_id') delete node[prop]; |
| 1253 | } |
| 1254 | return this; |
| 1255 | } |
| 1256 | } |
no outgoing calls
no test coverage detected