mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-06 00:58:44 +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
|
||
|
});
|
||
|
}
|