From 6b274a30fa6e6baf0127dd80d54d2f47edf8198a Mon Sep 17 00:00:00 2001 From: KillWolfVlad Date: Mon, 25 Mar 2019 21:38:53 +0500 Subject: [PATCH] use neo-async instead async --- index.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 829ec2e..57c2dc9 100644 --- a/index.js +++ b/index.js @@ -1,6 +1,6 @@ const fs = require('fs') const path = require('path') -const async = require('async') +const async = require('neo-async') function readlink (link, cb) { var result = '/' diff --git a/package.json b/package.json index 0afb107..a387a02 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,6 @@ "node": ">=6" }, "dependencies": { - "async": "^2.5.0" + "neo-async": "^2.6.0" } }