DCL

An elegant OOP with mixins + AOP for JavaScript.

advise.before()

Version 1.x

This is a convenience function to weave a before advice based on advise().

Description

This is a shortcut function to weave one before advice with an object’s method. Logically it is defined as:

advise.before()
1
2
3
4
5
advise.before = function(object, name, advice){
  return advise(object, name, {
    before: advice
  });
};

It means that instead of:

Long
1
2
3
var adv = advise(object, name, {
  before: advice
});

It is possible to write a shorter version:

Short
1
var adv = advise.before(object, name, advice);

Advice function

This type of advice is a regular function. It is called with the same context and the same arguments as an advised method. Its return value is ignored.

It is not recommended to modify parameters inside before advice. Use around advice for that.

Returned value

Just like advise() it is based on, it returns an opaque object with a single method: unadvise(). Calling it without parameters removes all advices set with that call to advise().

In order to be compatible with general destruction mechanisms it defines one more method: destroy(), which is an alias to unadvise().