// Copyright 2014 Mark Cavage, Inc. All rights reserved. // Copyright 2014 Patrick Mooney. All rights reserved. var util = require('util'); var assert = require('assert-plus'); var helpers = require('./helpers'); ///--- API function LessThanEqualsFilter(options) { if (typeof (options) === 'object') { assert.string(options.attribute, 'options.attribute'); assert.string(options.value, 'options.attribute'); this.attribute = options.attribute; this.value = options.value; } var self = this; this.__defineGetter__('type', function () { return 'le'; }); this.__defineGetter__('json', function () { return { type: 'LessThanEqualsMatch', attribute: self.attribute, value: self.value }; }); } util.inherits(LessThanEqualsFilter, helpers.Filter); LessThanEqualsFilter.prototype.toString = function () { return ('(' + helpers.escape(this.attribute) + '<=' + helpers.escape(this.value) + ')'); }; LessThanEqualsFilter.prototype.matches = function (target, strictAttrCase) { assert.object(target, 'target'); var tv = helpers.getAttrValue(target, this.attribute, strictAttrCase); var value = this.value; return helpers.testValues(function (v) { return value >= v; }, tv); }; ///--- Exports module.exports = LessThanEqualsFilter;