mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-30 22:34:10 -05:00
9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
function ValidVerdaccioPlugin() {
|
|
return {
|
|
// not valid method
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-function
|
|
authenticate__: function(){}
|
|
}
|
|
}
|
|
|
|
module.exports = ValidVerdaccioPlugin;
|