Speech as a package #416

Merged
bones7242 merged 89 commits from speech-as-a-package into master 2018-04-18 21:47:34 +02:00
5 changed files with 6 additions and 6 deletions
Showing only changes of commit 2b2dedcdc2 - Show all commits

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