2015-04-19 16:31:52 -04:00
|
|
|
var inherits = require('inherits')
|
|
|
|
var Formatter = require('../../formatter')
|
|
|
|
var assign = require('lodash/object/assign')
|
2014-09-01 17:18:45 +02:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
function Oracle_Formatter(client) {
|
|
|
|
Formatter.call(this, client)
|
2014-08-11 12:25:39 +02:00
|
|
|
}
|
2015-04-19 16:31:52 -04:00
|
|
|
inherits(Oracle_Formatter, Formatter)
|
2014-08-11 12:25:39 +02:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
assign(Oracle_Formatter.prototype, {
|
2014-08-11 12:25:39 +02:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
alias: function(first, second) {
|
2014-08-11 12:25:39 +02:00
|
|
|
return this.wrap(first) + ' ' + this.wrap(second);
|
|
|
|
}
|
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
})
|
2014-08-11 12:25:39 +02:00
|
|
|
|
2015-04-19 16:31:52 -04:00
|
|
|
module.exports = Oracle_Formatter
|