-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CreateString CreateArray CreateNumber #6
Comments
What would be the input of these components? Strings? If so, why not put that into noflo-strings, we already have ParseFloat/ParseInt/ParseJson there. |
No, they would have the correct input widget, so the parsing would be done |
I made a start (disclaimer, I'm new to FBP).
I'd prefer to have tests for these but I'm not entirely sure what I need to cover. Maybe something like this? test = require "noflo-test"
expected1 = []
test.component("objects/CreateArray").
discuss("upon start").
send.connect("start").
send.data("start", null).
send.disconnect("start").
discuss("creates an empty array").
receive.data("out", expected1).
export module So, if |
These components would be useful in the UI to have the correct IIP editor in the node inspector.
The text was updated successfully, but these errors were encountered: