Opal-Estate-Pro/node_modules/core-js/modules/_flags.js

14 lines
370 B
JavaScript
Raw Normal View History

2019-09-13 06:27:52 +02:00
'use strict';
// 21.2.5.3 get RegExp.prototype.flags
var anObject = require('./_an-object');
module.exports = function () {
var that = anObject(this);
var result = '';
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';
return result;
};