.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / regexp-flags.js
1 'use strict';
2 var anObject = require('../internals/an-object');
3
4 // `RegExp.prototype.flags` getter implementation
5 // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
6 module.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 };