UNPKG

scandium-express

Version:
18 lines (13 loc) 255 B
Sc.Resource = Class(Sc, 'Resource')({ prototype : { id : null, init : function(id) { if (!id) { throw new Error('Invalid resource id'); } this.id = id; return this; } } }); module.exports = Sc.Resource;