UNPKG

thinky-rest

Version:

Create REST resources and controllers with thinky and Express or Restify

10 lines (8 loc) 256 B
'use strict'; module.exports = function(endpoint) { this.string = endpoint; this.attributes = endpoint .split('/') .filter(function(c) { return ~c.indexOf(':') && ~~c.indexOf(':unused'); }) .map(function(c) { return c.substring(1); }); };