Frame
Frame copied to clipboard
Allow multiple blueprints to be initialized using array destructuring
Array destructing allows multiple blueprints to be included with minimal amount of syntax.
const [Mesh, HAM] = Frame(['Mesh', 'HAM'])
And multi-line
const [
Movie,
Song,
HTML,
React,
] = Frame([
'Movie',
'Song',
'HTML',
'React',
])
Resources:
- https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment