mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
17 lines
213 B
JavaScript
17 lines
213 B
JavaScript
/*
|
|
module.exports = function() {
|
|
local_store()
|
|
for each uplink
|
|
status = uplink_store()
|
|
if (status == 201) {
|
|
succeess.push(uplink)
|
|
} else {
|
|
bail()
|
|
}
|
|
|
|
bail:
|
|
local_revert()
|
|
uplink_revert()
|
|
};
|
|
*/
|