Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
906 B
JavaScript
24 lines
906 B
JavaScript
// This is a legacy function.
|
|
// Use `findNumbers()` instead.
|
|
|
|
import _findPhoneNumbers, { searchPhoneNumbers as _searchPhoneNumbers } from './findPhoneNumbersInitialImplementation.js';
|
|
import normalizeArguments from '../normalizeArguments.js';
|
|
export default function findPhoneNumbers() {
|
|
var _normalizeArguments = normalizeArguments(arguments),
|
|
text = _normalizeArguments.text,
|
|
options = _normalizeArguments.options,
|
|
metadata = _normalizeArguments.metadata;
|
|
return _findPhoneNumbers(text, options, metadata);
|
|
}
|
|
|
|
/**
|
|
* @return ES6 `for ... of` iterator.
|
|
*/
|
|
export function searchPhoneNumbers() {
|
|
var _normalizeArguments2 = normalizeArguments(arguments),
|
|
text = _normalizeArguments2.text,
|
|
options = _normalizeArguments2.options,
|
|
metadata = _normalizeArguments2.metadata;
|
|
return _searchPhoneNumbers(text, options, metadata);
|
|
}
|
|
//# sourceMappingURL=findPhoneNumbers.js.map
|