es2018 regexp dotAll

This commit is contained in:
bluelovers 2018-05-18 10:07:46 +08:00 committed by GitHub
parent 66d6e5e6e0
commit dff19a5f70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,4 +28,9 @@ interface RegExpExecArray {
groups?: {
[key: string]: string
}
}
}
interface RegExp {
/** Returns a Boolean value indicating the state of the dotAll flag (s) used with a regular expression. Default is false. Read-only. */
readonly dotAll: boolean;
}