Blame view

node_modules/es5-ext/reg-exp/is-reg-exp.js 198 Bytes
f7563de62   Palak Handa   first commit
1
2
3
4
5
6
7
8
9
  'use strict';
  
  var toString = Object.prototype.toString
  
    , id = toString.call(/a/);
  
  module.exports = function (x) {
  	return (x && (x instanceof RegExp || (toString.call(x) === id))) || false;
  };