mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-25 07:04:45 +00:00
9 lines
229 B
JavaScript
9 lines
229 B
JavaScript
module.exports = registerPlugin;
|
|
|
|
const factory = require("./factory");
|
|
|
|
function registerPlugin(plugins, pluginFunction) {
|
|
return factory(
|
|
plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction)
|
|
);
|
|
}
|