Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove function wrapper #8625

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;

})();
4 changes: 0 additions & 4 deletions plugins/tiddlywiki/aws/templates/lambda/sjcl.tid
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ title: $:/plugins/tiddlywiki/aws/lambda/sjcl

\rules only filteredtranscludeinline transcludeinline
pmario marked this conversation as resolved.
Show resolved Hide resolved

(function() {

var module, window = {};

global.sjcl = (function() {
Expand All @@ -13,5 +11,3 @@ global.sjcl = (function() {
return window.sjcl;

})();

})();
Loading