(storages)
| 82 | return (type === 'string' && key) || type === 'number' || type === 'boolean'; |
| 83 | }, |
| 84 | _toStoragesArray = function (storages) { |
| 85 | if (Basil.utils.isArray(storages)) |
| 86 | return storages; |
| 87 | return Basil.utils.isString(storages) ? [storages] : []; |
| 88 | }, |
| 89 | _toStoredKey = function (namespace, path, delimiter) { |
| 90 | var key = ''; |
| 91 | if (_isValidKey(path)) { |