Skip to content

Commit 3073254

Browse files
committed
Fix typo
1 parent f372dfb commit 3073254

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metasync.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22

33
const common = require('@metarhia/common');
4-
const nodeVerion = common.between(process.version, 'v', '.');
4+
const nodeVersion = common.between(process.version, 'v', '.');
55

66
const submodules = [
77
'composition', // Unified abstraction
@@ -17,7 +17,7 @@ const submodules = [
1717
'throttle', // Throttling utilities
1818
].map((path) => require('./lib/' + path));
1919

20-
if (nodeVerion >= 10) {
20+
if (nodeVersion >= 10) {
2121
submodules.push(require('./lib/async-iterator'));
2222
}
2323

0 commit comments

Comments
 (0)