mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-19 16:12:14 +11:00
11 lines
398 B
JavaScript
11 lines
398 B
JavaScript
import metadata from '../min/metadata'
|
|
|
|
import { PhoneNumberSearch as _PhoneNumberSearch } from '../es6/findPhoneNumbers_'
|
|
|
|
export function PhoneNumberSearch(text, options) {
|
|
_PhoneNumberSearch.call(this, text, options, metadata)
|
|
}
|
|
|
|
// Deprecated.
|
|
PhoneNumberSearch.prototype = Object.create(_PhoneNumberSearch.prototype, {})
|
|
PhoneNumberSearch.prototype.constructor = PhoneNumberSearch
|