(options, propName, def)
| 62 | |
| 63 | // Helper function gets a property from the properties object, with a default fallback |
| 64 | var getOption = function (options, propName, def) { |
| 65 | var value = options[propName]; |
| 66 | if (value !== undefined) { |
| 67 | return value |
| 68 | } |
| 69 | return def |
| 70 | }; |
| 71 | |
| 72 | var getGutterSize = function (gutterSize, isFirst, isLast, gutterAlign) { |
| 73 | if (isFirst) { |
no outgoing calls
no test coverage detected