Skip to content

Commit

Permalink
Merge branch 'release/4.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
yentsun committed Jul 7, 2019
2 parents 891b52a + 7d85194 commit f6f5554
Show file tree
Hide file tree
Showing 5 changed files with 1,598 additions and 1,079 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[4.0.2] - 2019-07-07
--------------------
- [x] Update dependencies


[4.0.1] - 2019-02-20
--------------------
- [x] Increase code coverage
Expand Down
2 changes: 1 addition & 1 deletion external.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const modules = {
module.exports = (value) => {
const [module, key] = value.split('::');
const moduleName = module.toLowerCase();
if (!(moduleName in modules))
if (! (moduleName in modules))
throw new Error(`Unknown external module ${module}`);
const result = modules[moduleName](key);
if (numeric.test(result))
Expand Down

0 comments on commit f6f5554

Please sign in to comment.