mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-05 16:48:43 +00:00
12 lines
217 B
JavaScript
12 lines
217 B
JavaScript
"use strict";
|
|
|
|
var isUnicode = require("../is-unicode");
|
|
|
|
if (!require("./is-implemented")()) {
|
|
Object.defineProperty(RegExp.prototype, "unicode", {
|
|
configurable: true,
|
|
enumerable: false,
|
|
get: isUnicode
|
|
});
|
|
}
|