chore: lint

This commit is contained in:
coderaiser 2023-08-07 17:40:25 +03:00
parent 13279299c4
commit 24dcf78be8
16 changed files with 25 additions and 26 deletions

View file

@ -1,7 +1,5 @@
'use strict';
const isFn = (a) => typeof a === 'function';
const isString = (a) => typeof a === 'string';
const DIR = '../';
const DIR_COMMON = `${DIR}../common/`;
@ -24,7 +22,8 @@ const ponse = require('ponse');
const copymitter = require('copymitter');
const moveFiles = require('@cloudcmd/move-files');
const isString = (a) => typeof a === 'string';
const isFn = (a) => typeof a === 'function';
const swap = wraptile((fn, a, b) => fn(b, a));
const isWin32 = process.platform === 'win32';
const {apiURL} = CloudFunc;