'use strict';
/**
* Represents a callback argument that matches against functions.
*/
class Callback {
/**
* Returns string representation of this object.
* @returns {string} string representation of this object.
*/
toString() {
return '<callback>';
}
}
module.exports = Callback;