Prevent identToLoaderRequest to return 2 objects with different shapes

This commit is contained in:
Florent Cailhol 2018-04-04 13:41:56 +02:00
parent f3c9bd01b9
commit b6042fb937
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ const identToLoaderRequest = resultString => {
};
} else {
return {
loader: resultString
loader: resultString,
options
};
}
};