UNPKG

492 BJavaScriptView Raw
1'use strict';
2var anObject = require('../internals/an-object');
3
4// `RegExp.prototype.flags` getter implementation
5// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags
6module.exports = function () {
7 var that = anObject(this);
8 var result = '';
9 if (that.global) result += 'g';
10 if (that.ignoreCase) result += 'i';
11 if (that.multiline) result += 'm';
12 if (that.dotAll) result += 's';
13 if (that.unicode) result += 'u';
14 if (that.sticky) result += 'y';
15 return result;
16};