1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-30 05:19:57 +00:00

Remove function wrapper (#8625)

* remove function wrapper

* add back anonymous function to sjcl.tid
This commit is contained in:
Mario Pietsch 2024-10-01 14:16:39 +02:00 committed by GitHub
parent 7bf2fee15e
commit fca39c7f72
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 0 additions and 17 deletions

View File

@ -6,8 +6,6 @@ module-type: command
--aws command --aws command
\*/ \*/
(function(){
/*jslint node: true, browser: true */ /*jslint node: true, browser: true */
/*global $tw: false */ /*global $tw: false */
"use strict"; "use strict";
@ -238,6 +236,3 @@ Command.prototype.subCommands["s3-savetiddlers"] = function() {
}; };
exports.Command = Command; exports.Command = Command;
})();

View File

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

View File

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

View File

@ -6,8 +6,6 @@ module-type: library
AWS utility functions AWS utility functions
\*/ \*/
(function(){
/*jslint node: true, browser: true */ /*jslint node: true, browser: true */
/*global $tw: false */ /*global $tw: false */
"use strict"; "use strict";
@ -72,5 +70,3 @@ function putFile(region,bucketName,title,text,type,callback) {
exports.putFile = putFile; exports.putFile = putFile;
exports.getFile = getFile; exports.getFile = getFile;
})();