5273d0df9c
Main workflow / Run (windows-latest) (push) Waiting to run
Main workflow / Run (ubuntu-latest) (push) Failing after 46s
8 lines
219 B
JavaScript
8 lines
219 B
JavaScript
module.exports = registerPlugin
|
|
|
|
const factory = require('./factory')
|
|
|
|
function registerPlugin (plugins, pluginFunction) {
|
|
return factory(plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction))
|
|
}
|