diff options
Diffstat (limited to 'node_modules/liftoff/lib')
-rw-r--r-- | node_modules/liftoff/lib/register_loader.js | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/node_modules/liftoff/lib/register_loader.js b/node_modules/liftoff/lib/register_loader.js index 2b5f4cb75..e29b08ad5 100644 --- a/node_modules/liftoff/lib/register_loader.js +++ b/node_modules/liftoff/lib/register_loader.js @@ -1,10 +1,9 @@ const rechoir = require('rechoir'); -const isString = require('lodash.isstring'); module.exports = function(eventEmitter, extensions, configPath, cwd) { extensions = extensions || {}; - if (!isString(configPath)) { + if (typeof configPath !== 'string') { return; } |