()
| 9 | let nodeSpecJSON: NodeSpecJSON[] | undefined = undefined; |
| 10 | |
| 11 | export const getNodeSpecJSON = (): NodeSpecJSON[] => { |
| 12 | if (nodeSpecJSON === undefined) { |
| 13 | const registry = new Registry(); |
| 14 | registerCoreProfile(registry); |
| 15 | registerSceneProfile(registry); |
| 16 | nodeSpecJSON = writeNodeSpecsToJSON(registry); |
| 17 | } |
| 18 | return nodeSpecJSON; |
| 19 | }; |
no outgoing calls
no test coverage detected