(key)
| 78 | .substring(7), |
| 79 | _storages = {}, |
| 80 | _isValidKey = function (key) { |
| 81 | var type = Basil.utils.getTypeOf(key); |
| 82 | return (type === 'string' && key) || type === 'number' || type === 'boolean'; |
| 83 | }, |
| 84 | _toStoragesArray = function (storages) { |
| 85 | if (Basil.utils.isArray(storages)) |
| 86 | return storages; |
no outgoing calls
no test coverage detected