From 56999599ed3a60deeec65110e69a98e4c2b3f675 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 15 Feb 2017 15:57:32 +0200 Subject: [PATCH] chore(operation) reserved words --- client/operation.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/client/operation.js b/client/operation.js index aeb82c23..36f791c9 100644 --- a/client/operation.js +++ b/client/operation.js @@ -7,6 +7,9 @@ /* global salam */ /* global omnes */ +// ignore reserved words +// jshint -W024 + 'use strict'; CloudCmd.Operation = OperationProto; @@ -28,11 +31,10 @@ function OperationProto(operation, data) { cp: copyFn, mv: moveFn, pack: packFn, + delete: deleteFn, extract: extractFn, } = RESTful; - let deleteFn = RESTful.delete; - const Info = DOM.CurrentInfo; const showLoad = Images.show.load.bind(null, 'top'); const Operation = this;