mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
12 lines
280 B
CoffeeScript
12 lines
280 B
CoffeeScript
module.exports =
|
|
class OnigRegExp
|
|
@create: (source) ->
|
|
regexp = $onigRegExp.buildOnigRegExp(source);
|
|
regexp.constructor = OnigRegExp
|
|
regexp.__proto__ = OnigRegExp.prototype
|
|
regexp.source = source
|
|
regexp
|
|
|
|
search: $onigRegExp.search
|
|
test: $onigRegExp.test
|