fixed typeOf check and string literal require in dynamicImport

This commit is contained in:
bill bittner 2018-03-20 13:31:00 -07:00
parent fee422223a
commit 2b2dedcdc2
5 changed files with 6 additions and 6 deletions

View file

@ -14,9 +14,9 @@ export const dynamicImport = (filePath) => {
if (!filePath) {
throw new Error('no file path provided to dynamicImport()');
}
if (filePath.typeof !== 'string') {
if (typeof filePath !== 'string') {
console.log('dynamicImport > filePath:', filePath);
console.log('dynamicImport > filePath type:', filePath.typeof);
console.log('dynamicImport > filePath type:', typeof filePath);
throw new Error('file path provided to dynamicImport() must be a string');
}
// split out the file folders // filter out any empty or white-space-only strings

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long