If you're looking for Fluid Project coordination, design, communication, etc, try the Fluid Project Wiki.
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.
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
array
(Array) Array of strings to convert into a hash map
Value
description
var elementList = ["div", "tr", "li"]; var map = fluid.arrayToHash(elementList);
In this example, map
will result as:
{ div: true, tr: true, li: true }