5 lines
136 B
JavaScript
5 lines
136 B
JavaScript
require('../../modules/es.regexp.to-string');
|
|
|
|
module.exports = function toString(it) {
|
|
return RegExp.prototype.toString.call(it);
|
|
};
|