(options)
| 13 | let defaultResponsive = 'md'; |
| 14 | |
| 15 | export function setOptions(options) { |
| 16 | if (!options) { |
| 17 | return; |
| 18 | } |
| 19 | if (options.gridPre) { |
| 20 | gridPre = options.gridPre; |
| 21 | } |
| 22 | if (options.offsetPre) { |
| 23 | offsetPre = options.offsetPre; |
| 24 | } |
| 25 | if (options.responsive) { |
| 26 | defaultResponsive = options.responsive; |
| 27 | } |
| 28 | } |
| 29 | |
| 30 | export function getGrid(options) { |
| 31 | if (!options) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…