You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							34 lines
						
					
					
						
							823 B
						
					
					
				
			
		
		
	
	
							34 lines
						
					
					
						
							823 B
						
					
					
				/**
 | 
						|
 * A class representation of the BSON RegExp type.
 | 
						|
 *
 | 
						|
 * @class
 | 
						|
 * @return {BSONRegExp} A MinKey instance
 | 
						|
 */
 | 
						|
function BSONRegExp(pattern, options) {
 | 
						|
  if (!(this instanceof BSONRegExp)) return new BSONRegExp();
 | 
						|
 | 
						|
  // Execute
 | 
						|
  this._bsontype = 'BSONRegExp';
 | 
						|
  this.pattern = pattern || '';
 | 
						|
  this.options = options || '';
 | 
						|
 | 
						|
  // Validate options
 | 
						|
  for (var i = 0; i < this.options.length; i++) {
 | 
						|
    if (
 | 
						|
      !(
 | 
						|
        this.options[i] === 'i' ||
 | 
						|
        this.options[i] === 'm' ||
 | 
						|
        this.options[i] === 'x' ||
 | 
						|
        this.options[i] === 'l' ||
 | 
						|
        this.options[i] === 's' ||
 | 
						|
        this.options[i] === 'u'
 | 
						|
      )
 | 
						|
    ) {
 | 
						|
      throw new Error('the regular expression options [' + this.options[i] + '] is not supported');
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
module.exports = BSONRegExp;
 | 
						|
module.exports.BSONRegExp = BSONRegExp;
 |