Skip to content

Commit

Permalink
Remove function wrapper (#8625)
Browse files Browse the repository at this point in the history
* remove function wrapper

* add back anonymous function to sjcl.tid
  • Loading branch information
pmario authored Oct 1, 2024
1 parent 7bf2fee commit fca39c7
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 17 deletions.
5 changes: 0 additions & 5 deletions plugins/tiddlywiki/aws/modules/command.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ module-type: command
--aws command
\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
Expand Down Expand Up @@ -238,6 +236,3 @@ Command.prototype.subCommands["s3-savetiddlers"] = function() {
};

exports.Command = Command;

})();

4 changes: 0 additions & 4 deletions plugins/tiddlywiki/aws/modules/encodings.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ module-type: filteroperator
Filter operator for applying encodeuricomponent() to each item, with the addition of converting single quotes to %27, as required by AWS
\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
Expand All @@ -23,5 +21,3 @@ exports["aws-encodeuricomponent"] = function(source,operator,options) {
});
return results;
};

})();
4 changes: 0 additions & 4 deletions plugins/tiddlywiki/aws/modules/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ module-type: startup
AWS initialisation
\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
Expand All @@ -33,5 +31,3 @@ exports.startup = function() {
logger.alert("The plugin 'tiddlywiki/aws' requires the 'tiddlywiki/jszip' plugin to be installed");
}
};

})();
4 changes: 0 additions & 4 deletions plugins/tiddlywiki/aws/modules/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ module-type: library
AWS utility functions
\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
Expand Down Expand Up @@ -72,5 +70,3 @@ function putFile(region,bucketName,title,text,type,callback) {

exports.putFile = putFile;
exports.getFile = getFile;

})();

0 comments on commit fca39c7

Please sign in to comment.