aboutsummaryrefslogtreecommitdiff
path: root/node_modules/core-js/library/fn/regexp/to-string.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/core-js/library/fn/regexp/to-string.js')
-rw-r--r--node_modules/core-js/library/fn/regexp/to-string.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/node_modules/core-js/library/fn/regexp/to-string.js b/node_modules/core-js/library/fn/regexp/to-string.js
new file mode 100644
index 00000000..faf418dd
--- /dev/null
+++ b/node_modules/core-js/library/fn/regexp/to-string.js
@@ -0,0 +1,5 @@
+'use strict';
+require('../../modules/es6.regexp.to-string');
+module.exports = function toString(it) {
+ return RegExp.prototype.toString.call(it);
+};