get-mexican-data-by-curp
Version:
Verify CURP and obtain personal information from the Mexican government CURP. It scrapes official site and another providers.
21 lines (20 loc) • 444 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.StringObject = void 0;
class StringObject {
constructor(...values) {
this.id = '';
this._value = '';
this._value = values[0];
}
get value() {
return this._value;
}
set value(value) {
this._value = value;
}
toString() {
return this.value;
}
}
exports.StringObject = StringObject;