Combines provided lookup paths with defaults and removes duplicates. @private @method generateLookupPaths @param {Array} lookupPaths @return {Array}
(lookupPaths)
| 1659 | @return {Array} |
| 1660 | */ |
| 1661 | function generateLookupPaths(lookupPaths) { |
| 1662 | lookupPaths = lookupPaths || []; |
| 1663 | lookupPaths = lookupPaths.concat(Blueprint.defaultLookupPaths()); |
| 1664 | return uniq(lookupPaths); |
| 1665 | } |
| 1666 | |
| 1667 | /** |
| 1668 | Looks for a __path__ token in the files folder. Must be present for |
no outgoing calls
no test coverage detected
searching dependent graphs…