aboutsummaryrefslogtreecommitdiff
path: root/node_modules/babel-runtime/node_modules/core-js/modules/_flags.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/babel-runtime/node_modules/core-js/modules/_flags.js')
-rw-r--r--node_modules/babel-runtime/node_modules/core-js/modules/_flags.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/babel-runtime/node_modules/core-js/modules/_flags.js b/node_modules/babel-runtime/node_modules/core-js/modules/_flags.js
deleted file mode 100644
index b6fc324bd..000000000
--- a/node_modules/babel-runtime/node_modules/core-js/modules/_flags.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'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;
-};