UNPKG

salt-shaker

Version:

A script to purge old slugs from a datastore

12 lines (8 loc) 197 B
function Persistence(){}; Persistence.prototype.initialize = function(name){ this.name = name; } Persistence.prototype.purge = function(fn){ return fn(); } module.exports = Persistence;