mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-27 01:57:33 +00:00
16 lines
346 B
Python
16 lines
346 B
Python
from ..base import *
|
|
|
|
RegExpPrototype.define_own_property('constructor', {
|
|
'value': RegExp,
|
|
'enumerable': False,
|
|
'writable': True,
|
|
'configurable': True
|
|
})
|
|
|
|
RegExp.define_own_property(
|
|
'prototype', {
|
|
'value': RegExpPrototype,
|
|
'enumerable': False,
|
|
'writable': False,
|
|
'configurable': False
|
|
})
|