(source, propName)
| 392 | |
| 393 | // returns and array for a source and a prop, and creates the prop if needed. |
| 394 | function __getArray(source, propName) { |
| 395 | var arr = source[propName]; |
| 396 | if (!arr) { |
| 397 | arr = []; |
| 398 | source[propName] = arr; |
| 399 | } |
| 400 | return arr; |
| 401 | } |
| 402 | |
| 403 | function __requireLib(libNames, errMessage) { |
| 404 | var arrNames = libNames.split(";"); |
no outgoing calls
no test coverage detected