How to use the delegates function in delegates

To help you get started, we’ve selected a few delegates examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github trekjs / route-mapper / src / route.js View on Github external
if (/^\//.test(controller)) {
        return controller.substr(1);
      } else {
        if (/^\//.test(modyoule)) {
          modyoule = modyoule.substr(1);
        }
        return _.compact([modyoule, controller]).join('/');
      }
    }
    return controller;
  }

}

// Delegates
delegate(Route.prototype, 'options')
  .getter('format')
  .getter('as')
  .getter('to')

export default Route;
github trekjs / route-mapper / src / route_mapper.js View on Github external
'get',
  'options',
  'post',
  'put',
  'patch',
  // delete
  'delete',
  'del'
].forEach((verb) => {
  RouteMapper.prototype[verb] = function() {
    return this._mapMethod(verb, arguments);
  };
});

// Delegates
delegate(RouteMapper.prototype, '$scope')
  .getter('isResources')
  .getter('isResourceScope')
  .getter('isNestedScope')
  .getter('isResourceMethodScope')

export default RouteMapper;

delegates

delegate methods and accessors to another property

MIT
Latest version published 8 years ago

Package Health Score

71 / 100
Full package analysis

Popular delegates functions