chore(operation) reserved words

This commit is contained in:
coderaiser 2017-02-15 15:57:32 +02:00
parent 726d38b442
commit 56999599ed

View file

@ -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;