(optionDef)
| 1383 | } |
| 1384 | |
| 1385 | function makeSelectInputTextByValue(optionDef) { |
| 1386 | if (optionDef.hasOwnProperty('value')) { |
| 1387 | return printObject(optionDef.value, { |
| 1388 | arrayLineBreak: false, objectLineBreak: false, indent: 0, lineBreak: '' |
| 1389 | }); |
| 1390 | } |
| 1391 | else if (optionDef.input) { |
| 1392 | return 'range input'; |
| 1393 | } |
| 1394 | } |
| 1395 | } // End of createSelectInput |
| 1396 | |
| 1397 | function createGroupSetInput(groupSetDefine) { |
no outgoing calls
no test coverage detected
searching dependent graphs…