Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
timursevimli committed Feb 4, 2024
1 parent cadf63e commit 18dc227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metasync.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

const common = require('@metarhia/common');
const nodeVerion = common.between(process.version, 'v', '.');
const nodeVersion = common.between(process.version, 'v', '.');

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

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

Expand Down

0 comments on commit 18dc227

Please sign in to comment.