'use strict';// 21.2.5.3 get RegExp.prototype.flagsvaranObject=require('./_an-object');module.exports=function(){varthat=anObject(this);varresult='';if(that.global)result+='g';if(that.ignoreCase)result+='i';if(that.multiline)result+='m';if(that.unicode)result+='u';if(that.sticky)result+='y';returnresult;};