Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 1x 1x 1x 1x | var _ = require('underscore'); /** * Represents an ActiveDirectory user account. * * @private * @param {Object} [properties] The properties to assign to the newly created item. * @returns {User} */ var User = function(properties) { if (this instanceof User) { for (var property in (properties || {})) { if (Array.prototype.hasOwnProperty.call(properties, property)) { this[property] = properties[property]; } } } else { return(new User(properties)); } }; /** * Checks to see if the user is the member of the specified group. * * @param {String} group The name of the group to check for membership. * @returns {Boolean} */ User.prototype.isMemberOf = function isMemberOf(group) { if (! group) return(false); group = (group || '').toLowerCase(); return(_.any(this.groups || [], function(item) { return (((item || {}).cn || '').toLowerCase() === group); })); }; module.exports = User; |