Remove 'isRegExp'.

This commit is contained in:
Daniel Rosenwasser 2015-04-09 12:35:11 -07:00
parent 21a5611839
commit d3dd48f07b

7
src/lib/es6.d.ts vendored
View file

@ -50,11 +50,6 @@ interface SymbolConstructor {
*/
isConcatSpreadable: symbol;
/**
* A Boolean value that if true indicates that an object may be used as a regular expression.
*/
isRegExp: symbol;
/**
* A method that returns the default iterator for an object.Called by the semantics of the
* for-of statement.
@ -598,8 +593,6 @@ interface Math {
}
interface RegExp {
[Symbol.isRegExp]: boolean;
/**
* Matches a string with a regular expression, and returns an array containing the results of
* that search.