This documentation is currently being moved to our new documentation site.
Please view or edit the documentation there, instead.
If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.
fluid.arrayToHash
This functionality is Sneak Peek status. This means that the APIs may change. We welcome your feedback, ideas, and code, but please use caution if you use this new functionality.
fluid.arrayToHash(array)
Converts an array of strings into a map where the keys are the strings and the value is true
.
fluid.arrayToHash(array);
File name: fluidRenderer.js
Parameters
array |
(Array) Array of strings to convert into a hash map |
Return Value
Value | description |
See Also
Example
var elementList = ["div", "tr", "li"]; var map = fluid.arrayToHash(elementList);
In this example, map
will result as:
{ div: true, tr: true, li: true }