Changed syntax in hope of IE fix

This commit is contained in:
2018-05-07 14:33:50 -04:00
parent db4784520b
commit 3262a76cfd
2 changed files with 6 additions and 4 deletions

View File

@ -6,15 +6,17 @@ export interface WebStorageOptions {
defaultValue?: any;
}
export function LocalStorage(opts: WebStorageOptions = {}) {
export function LocalStorage(opts: WebStorageOptions) {
if(!opts) opts = {};
return storage(localStorage, opts);
}
export function SessionStorage(opts: WebStorageOptions = {}) {
export function SessionStorage(opts: WebStorageOptions) {
if(!opts) opts = {};
return storage(sessionStorage, opts);
}
function storage(storageType: Storage, opts: WebStorageOptions = {}) {
function storage(storageType: Storage, opts: WebStorageOptions) {
return function(target: object, key: string) {
if(!opts.fieldName) opts.fieldName = key;