zellige.js
Version:
A Moroccan utility library for working with CIN, phone numbers, currency, addresses, dates, and more.
30 lines (29 loc) • 760 B
JavaScript
;
/**
* Extractor module for various data extraction operations
* @module extractors
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.extractCINMetadata = exports.extractors = void 0;
/**
* Import CIN extraction utilities
*/
const cin_1 = require("./cin");
Object.defineProperty(exports, "extractCINMetadata", { enumerable: true, get: function () { return cin_1.extractCINMetadata; } });
/**
* Namespace containing all CIN-related extraction functions
*/
const cin = {
extract: cin_1.extractCINMetadata,
};
/**
* Collection of all extractor namespaces
*/
exports.extractors = {
cin,
};
/**
* Default export providing access to all extractor functions
* @default
*/
exports.default = exports.extractors;